MethodChange.st
changeset 3138 0442e4f23d39
parent 2944 c00806fd6113
child 3156 0996d3209a14
child 3158 f8c56a311307
--- a/MethodChange.st	Tue Mar 26 13:13:27 2013 +0100
+++ b/MethodChange.st	Tue Mar 26 13:13:47 2013 +0100
@@ -148,9 +148,11 @@
     mth isNil ifTrue:[^ ChangeDeltaInformation added ].
     mySource := self source.
     imageSource := mth source.
-    ^(self class isSource: mySource sameSourceAs: imageSource)
-        ifTrue:[ ChangeDeltaInformation identical ]
-        ifFalse:[ ChangeDeltaInformation different ]
+
+    (self class isSource: mySource sameSourceAs: imageSource) ifTrue:[ 
+        ^ ChangeDeltaInformation identical 
+    ].
+    ^ ChangeDeltaInformation different
 
     "Created: / 31-08-2011 / 10:27:58 / cg"
 !
@@ -461,13 +463,14 @@
 !MethodChange class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/MethodChange.st,v 1.68 2012-10-30 14:25:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/MethodChange.st,v 1.69 2013-03-26 12:13:47 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/MethodChange.st,v 1.68 2012-10-30 14:25:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/MethodChange.st,v 1.69 2013-03-26 12:13:47 cg Exp $'
 !
 
 version_SVN
     ^ '§Id: MethodChange.st 1940 2012-07-26 15:09:40Z vranyj1 §'
 ! !
+