#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Mon, 06 Feb 2017 15:27:04 +0100
changeset 17353 ce7d16ee2886
parent 17352 e562e78bb79c
child 17354 82d0b80ae6e9
#DOCUMENTATION by cg class: VersionDiffBrowser changed: #methodsChangedSelectionChanged
VersionDiffBrowser.st
--- a/VersionDiffBrowser.st	Mon Feb 06 15:26:08 2017 +0100
+++ b/VersionDiffBrowser.st	Mon Feb 06 15:27:04 2017 +0100
@@ -1975,9 +1975,10 @@
                     parseError ifFalse:[
                         (treeA "semanticallyEqualTo:" equalTo:treeB withMapping:(Dictionary  new)) ifTrue:[
                             self infoHolder value:'Methods only differ in formatting / comments.'.
-                        ].
-                        (treeA semanticallyEqualTo:treeB withMapping:(Dictionary  new)) ifTrue:[
-                            self infoHolder value:'Methods seem to do the same.'.
+                        ] ifFalse:[
+                            (treeA semanticallyEqualTo:treeB withMapping:(Dictionary  new)) ifTrue:[
+                                self infoHolder value:'Methods seem to do the same.'.
+                            ]
                         ]
                     ]
                 ].
@@ -1993,7 +1994,7 @@
     ]
 
     "Modified: / 03-09-1999 / 15:01:30 / ps"
-    "Modified: / 06-02-2017 / 15:12:14 / cg"
+    "Modified: / 06-02-2017 / 15:26:26 / cg"
 !
 
 methodsOnlyInASelectionChanged