Workaround for stx bug. jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Tue, 08 Oct 2013 14:36:30 +0100
branchjv
changeset 13623 c88deb246b08
parent 13622 8052e86d86b1
child 13635 3d03ca477eb7
Workaround for stx bug.
Tools__NewSystemBrowser.st
--- a/Tools__NewSystemBrowser.st	Tue Oct 08 14:11:22 2013 +0100
+++ b/Tools__NewSystemBrowser.st	Tue Oct 08 14:36:30 2013 +0100
@@ -53020,9 +53020,11 @@
             ] ifFalse:[
                 "/ If the class definition is shown for the very same class, 
                 "/ do not update the code
+                | c |
+                
                 doUpdateCode := 
                     mthd isJavaMethod 
-                        and:[| c | (c := self theSingleSelectedClass) notNil and:[c theNonMetaclass == mthd mclass]]
+                        and:[(c := self theSingleSelectedClass) notNil and:[c theNonMetaclass == mthd mclass]]
             ].
         ].
     ].