diff options
author | kcr <kcr@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2007-08-01 21:37:58 +0000 |
---|---|---|
committer | kcr <kcr@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2007-08-01 21:37:58 +0000 |
commit | dd5767445825355f189cddc82886e67fdb1b119b (patch) | |
tree | 03e13e59824d35cf0477622b80f2b06b3f943091 | |
parent | 60fe98428d747b7f3e4ce92a138667a56ca0018b (diff) |
Removed debug print statements
-rw-r--r-- | src/classes/org/jdesktop/j3d/examples/applet3d/Applet3D.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/classes/org/jdesktop/j3d/examples/applet3d/Applet3D.java b/src/classes/org/jdesktop/j3d/examples/applet3d/Applet3D.java index 93e3f3c..e770d8f 100644 --- a/src/classes/org/jdesktop/j3d/examples/applet3d/Applet3D.java +++ b/src/classes/org/jdesktop/j3d/examples/applet3d/Applet3D.java @@ -125,15 +125,12 @@ public class Applet3D extends javax.swing.JPanel { GraphicsDevice graphicsDevice; if (container.getGraphicsConfiguration() != null) { graphicsDevice = container.getGraphicsConfiguration().getDevice(); - System.err.println("graphics device = " + graphicsDevice); } else { graphicsDevice = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice(); - System.err.println("*** using default screen graphics device = ( " + graphicsDevice + " )"); } GraphicsConfigTemplate3D template = new GraphicsConfigTemplate3D(); GraphicsConfiguration config = graphicsDevice.getBestConfiguration(template); - System.err.println("graphics config = " + config); Canvas3D c = new Canvas3D(config); |