JavaVMData.st
branchdevelopment
changeset 2730 272689c14005
parent 2655 4f6d57ffc179
child 2732 7d1a1fb5b01a
--- a/JavaVMData.st	Sat Sep 14 15:48:03 2013 +0100
+++ b/JavaVMData.st	Sun Sep 15 01:02:01 2013 +0100
@@ -106,10 +106,16 @@
     "This is certainly a hack, but handy as there is now way how to
      suppress individual warnings per-class or per-method level.
      In stx:libjava, we assign to pool variables of JavaVMData by purpose..."
-
-    ParserFlags allowAssignmentToPoolVariable: true
+    Smalltalk isInitialized ifTrue:[
+        ParserFlags allowAssignmentToPoolVariable: true
+    ] ifFalse:[
+        Smalltalk addStartBlock:[
+            ParserFlags allowAssignmentToPoolVariable: true
+        ]
+    ]
 
     "Created: / 19-04-2013 / 09:50:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 15-09-2013 / 00:58:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !JavaVMData class methodsFor:'documentation'!