#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Tue, 19 Dec 2017 16:55:57 +0100
changeset 17853 76bf1b627fcd
parent 17852 1d0da8b8a515
child 17855 9122cdf37cfd
#BUGFIX by stefan class: Tools::NewSystemBrowser changed: #delayedUpdateCodeWithAutoSearch:checkModified: fix DNU if there is no documentation method source
Tools__NewSystemBrowser.st
--- a/Tools__NewSystemBrowser.st	Mon Dec 18 10:23:26 2017 +0100
+++ b/Tools__NewSystemBrowser.st	Tue Dec 19 16:55:57 2017 +0100
@@ -24518,7 +24518,7 @@
                                     ] ifFalse:[    
                                         mthd := defClass theMetaclass compiledMethodAt:#documentation.
                                     ].    
-                                    mthd isNil ifTrue:[
+                                    (mthd isNil or:[mthd comment isNil]) ifTrue:[
                                         s cr; nextPutLine:'    Sorry, the package does not seem to provide documentation'
                                     ] ifFalse:[
                                         s nextPutAll:(mthd comment).
@@ -24588,6 +24588,7 @@
     "Created: / 29-08-2006 / 13:59:06 / cg"
     "Modified: / 23-07-2014 / 12:03:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 25-11-2017 / 13:11:26 / cg"
+    "Modified: / 19-12-2017 / 16:54:00 / stefan"
 !
 
 delayedVariableSelectionChanged