Revision: 5220
Author:   hansonr
Date:     2006-06-13 19:11:31 -0700 (Tue, 13 Jun 2006)
ViewCVS:  http://svn.sourceforge.net/jmol/?rev=5220&view=rev

Log Message:
-----------
bob200603 geodesic3d cleanup

Modified Paths:
--------------
    branches/bob200603/Jmol/src/org/jmol/g3d/Geodesic3D.java
Modified: branches/bob200603/Jmol/src/org/jmol/g3d/Geodesic3D.java
===================================================================
--- branches/bob200603/Jmol/src/org/jmol/g3d/Geodesic3D.java    2006-06-13 
22:30:34 UTC (rev 5219)
+++ branches/bob200603/Jmol/src/org/jmol/g3d/Geodesic3D.java    2006-06-14 
02:11:31 UTC (rev 5220)
@@ -170,20 +170,15 @@
   static short[][] neighborVertexesArrays;
   static short[][] faceVertexesArrays;
   static Vector3f[] vertexVectors;
-
   
     Geodesic3D(Graphics3D g3d) {
       this.g3d = g3d;
-      String id = "Geodesecs "+ System.currentTimeMillis();
-      //System.out.println(id+" 0");
-      initialize(id);
-      //System.out.println(id+" 1");
+      initialize();
     }
 
-  private static synchronized void initialize(String id) {
+  private static synchronized void initialize() {
     if(vertexCounts != null)
       return;
-    System.out.println(id + " initializing");
     vertexCounts = new short[maxLevel];
     neighborVertexesArrays = new short[maxLevel][];
     faceVertexesArrays = new short[maxLevel][];
@@ -217,7 +212,6 @@
                            " edgeCount=" + getEdgeCount(i));
       }
     }
-    System.out.println(id+" initialization completed");
   }
   
   static int getVertexCount(int level) {


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Jmol-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jmol-commits

Reply via email to