diff --git a/org.eclipse.emf.cdo.threedee.ui/src/org/eclipse/emf/cdo/threedee/ui/ThreeDeeWorld.java b/org.eclipse.emf.cdo.threedee.ui/src/org/eclipse/emf/cdo/threedee/ui/ThreeDeeWorld.java
index 1856ddb..31008e7 100644
--- a/org.eclipse.emf.cdo.threedee.ui/src/org/eclipse/emf/cdo/threedee/ui/ThreeDeeWorld.java
+++ b/org.eclipse.emf.cdo.threedee.ui/src/org/eclipse/emf/cdo/threedee/ui/ThreeDeeWorld.java
@@ -90,12 +90,12 @@
{
private static final ContextTracer TRACER = new ContextTracer(OM.DEBUG, ThreeDeeWorld.class);
+ private static boolean PRODUCTION = false;
+
private Map<Element, ElementGroup> elementGroups = new HashMap<Element, ElementGroup>();
private Map<Element, Map<Element, ReferenceShape>> referenceShapes = new HashMap<Element, Map<Element, ReferenceShape>>();
- private boolean production = false;
-
private Composite composite;
private QueueRunner runner;
@@ -153,7 +153,7 @@
universe.addBranchGraph(scene);
- if (!production)
+ if (!PRODUCTION)
{
universe.addBranchGraph(createCoordinateSystem());
}
@@ -162,7 +162,7 @@
frame.add(canvas);
createPicking(canvas, scene);
- if (production)
+ if (PRODUCTION)
{
IntroPlanet planet = new IntroPlanet(this);
universe.addBranchGraph(planet);