#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Tue, 28 Nov 2017 14:22:10 +0100
changeset 17802 3fefef20b087
parent 17801 048596d8abf2
child 17803 12fb9b50a719
#BUGFIX by cg class: VersionDiffBrowser changed: #methodsChangedSelectionChanged wrong message in info area
VersionDiffBrowser.st
--- a/VersionDiffBrowser.st	Mon Nov 27 17:37:10 2017 +0100
+++ b/VersionDiffBrowser.st	Tue Nov 28 14:22:10 2017 +0100
@@ -1977,9 +1977,13 @@
                         ] ifFalse:[
                             (treeA semanticallyEqualTo:treeB withMapping:(Dictionary  new)) ifTrue:[
                                 self infoHolder value:'Methods seem to do the same.'.
+                            ] ifFalse:[
+                                self infoHolder value:'Methods are different.'.
                             ]
                         ]
-                    ]
+                    ] ifTrue:[
+                        self infoHolder value:'ParseError while comparing - please check the code'.
+                    ].    
                 ].
             ].
             self diffTextView
@@ -1993,7 +1997,7 @@
     ]
 
     "Modified: / 03-09-1999 / 15:01:30 / ps"
-    "Modified: / 06-02-2017 / 15:26:26 / cg"
+    "Modified: / 28-11-2017 / 14:21:41 / cg"
 !
 
 methodsOnlyInASelectionChanged