src/JavaClassContentRef2.st
branchjk_new_structure
changeset 1372 dea574a1b6b3
parent 1155 d6f6d5fc0343
--- a/src/JavaClassContentRef2.st	Sat Feb 18 23:55:36 2012 +0000
+++ b/src/JavaClassContentRef2.st	Tue Feb 21 11:29:41 2012 +0000
@@ -165,13 +165,14 @@
     "Invalidate (means call invalidate) reference if it has something to do with given class (e.g Class named internalJavaClassName was unloaded).
      Return true, if reference was invalidated."
     
-    (self classRef invalidateForClass: internalJavaClassName) 
-        ifTrue: 
-            [ self invalidate.
-            ^ true ].
+    (self classRef invalidateForClass: internalJavaClassName) ifTrue: [ 
+        self invalidate.
+        ^ true 
+    ].
     ^ false.
 
     "Modified: / 12-05-2011 / 18:40:34 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
+    "Modified (format): / 21-02-2012 / 10:21:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !JavaClassContentRef2 class methodsFor:'documentation'!