src/JavaConstantPool.st
branchjk_new_structure
changeset 761 43e017ec7958
parent 758 be8e84381ce0
child 772 0f92c23b80ee
--- a/src/JavaConstantPool.st	Mon Apr 25 19:32:44 2011 +0000
+++ b/src/JavaConstantPool.st	Sun May 01 12:52:23 2011 +0000
@@ -50,13 +50,13 @@
 new: size 
     "return an initialized instance"
     
-    ^ ConstantPools add: 
-        ((super new: size) 
-            initialize;
-            yourself)
+    ^ ConstantPools add: ((super new: size)
+                initialize;
+                yourself).
 
     "Created: / 08-04-2011 / 16:56:18 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
     "Modified: / 09-04-2011 / 09:24:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 11-04-2011 / 18:46:54 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 ! !
 
 !JavaConstantPool class methodsFor:'accessing'!
@@ -69,13 +69,14 @@
     "Modified: / 09-04-2011 / 09:24:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-allConstantPools: aLinkedList
+allConstantPools: anOorderedCollection 
     "linked list of all constant pools in system"
     
-    ConstantPools := aLinkedList.
+    ConstantPools := anOorderedCollection.
 
     "Created: / 08-04-2011 / 17:07:28 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
     "Modified: / 09-04-2011 / 09:24:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 11-04-2011 / 18:47:58 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 ! !
 
 !JavaConstantPool class methodsFor:'special'!
@@ -305,3 +306,4 @@
 ! !
 
 JavaConstantPool initialize!
+