aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/classes/org/jdesktop/j3d/examples/applet3d/Applet3D.java3
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);