diff options
author | Wade Walker <[email protected]> | 2015-07-05 17:11:38 -0500 |
---|---|---|
committer | Wade Walker <[email protected]> | 2015-07-06 17:04:12 -0500 |
commit | e935256bf1ad44ceb2d9e3e63810f8d5017733be (patch) | |
tree | 70d8ab829d425a78ef8eebde640bd50fa6a3bb05 /src/com/jogamp/opencl/util | |
parent | 858dbcb36211e743559070acc49043c21cde6636 (diff) |
Fixed a variety of compilation and runtime errors
Fixed package change from javax.media to com.jogamp; fixed problems with
generics; fixed dead-code and similar warnings; fixed problem with struct
accessor on Julia3d using element offsets where it should have used byte
offsets; updated Eclipse project files
Diffstat (limited to 'src/com/jogamp/opencl/util')
-rw-r--r-- | src/com/jogamp/opencl/util/ExceptionReporter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/jogamp/opencl/util/ExceptionReporter.java b/src/com/jogamp/opencl/util/ExceptionReporter.java index 17b92cc..d1c9c07 100644 --- a/src/com/jogamp/opencl/util/ExceptionReporter.java +++ b/src/com/jogamp/opencl/util/ExceptionReporter.java @@ -38,6 +38,7 @@ import javax.swing.WindowConstants; * * @author Michael Bien */ +@SuppressWarnings("serial") public class ExceptionReporter extends JDialog { public ExceptionReporter(Frame parent, boolean modal) { @@ -65,7 +66,6 @@ public class ExceptionReporter extends JDialog { * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ - @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { JLabel icon = new JLabel(); |