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 94d0864..72420da 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
@@ -705,7 +705,6 @@
   {

     if (source == null)

     {

-      System.out.println("SOURCE IS NULL");

       // Can happen for call events

       return;

     }

@@ -724,6 +723,7 @@
         for (int i = 0; i < 100; i++)

         {

           transparencyAttributes.setTransparency(transparencyAttributes.getTransparency() + 0.01f);

+

           try

           {

             Thread.sleep(15);

diff --git a/org.eclipse.emf.cdo.threedee.ui/src/org/eclipse/emf/cdo/threedee/ui/nodes/ElementGroup.java b/org.eclipse.emf.cdo.threedee.ui/src/org/eclipse/emf/cdo/threedee/ui/nodes/ElementGroup.java
index 169d449..1279bf7 100644
--- a/org.eclipse.emf.cdo.threedee.ui/src/org/eclipse/emf/cdo/threedee/ui/nodes/ElementGroup.java
+++ b/org.eclipse.emf.cdo.threedee.ui/src/org/eclipse/emf/cdo/threedee/ui/nodes/ElementGroup.java
@@ -170,6 +170,19 @@
   /**

    * @author Eike Stepper

    */

+  public final class ElementSphere extends Sphere

+  {

+    public static final float RADIUS = .1f;

+  

+    public ElementSphere(Appearance appearance)

+    {

+      super(RADIUS, Primitive.GENERATE_NORMALS, 32, appearance);

+    }

+  }

+

+  /**

+   * @author Eike Stepper

+   */

   private static final class SelectionThread extends Thread

   {

     private Map<BranchGroup, TransparencyAttributes> selections = new HashMap<BranchGroup, TransparencyAttributes>();

@@ -217,17 +230,4 @@
       }

     }

   }

-

-  /**

-   * @author Eike Stepper

-   */

-  public final class ElementSphere extends Sphere

-  {

-    public static final float RADIUS = .1f;

-

-    public ElementSphere(Appearance appearance)

-    {

-      super(RADIUS, Primitive.GENERATE_NORMALS, 32, appearance);

-    }

-  }

 }