src/java.desktop/share/classes/sun/java2d/loops/CompositeType.java

Print this page

        

@@ -240,11 +240,11 @@
         next = parent;
         this.desc = desc;
         this.uniqueID = makeUniqueID(desc);
     }
 
-    public synchronized static int makeUniqueID(String desc) {
+    public static synchronized int makeUniqueID(String desc) {
         Integer i = compositeUIDMap.get(desc);
 
         if (i == null) {
             if (unusedUID > 255) {
                 throw new InternalError("composite type id overflow");