#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Fri, 25 May 2018 16:14:36 +0200
changeset 4326 8d1d982eb90b
parent 4325 85103a468e28
child 4327 f756bc4c48c4
#BUGFIX by cg class: HTMLDocGenerator changed: #printOutHTMLMethodProtocol:on:showClassName:classRef:picturePath: care for long running comment extraction
HTMLDocGenerator.st
--- a/HTMLDocGenerator.st	Thu May 24 14:57:33 2018 +0200
+++ b/HTMLDocGenerator.st	Fri May 25 16:14:36 2018 +0200
@@ -1995,7 +1995,10 @@
     ].
 
     (isSubres | isObsolete) ifFalse:[
-        exampleComments := self methodExampleCommentsOf:aMethod.
+        [    
+            exampleComments := self methodExampleCommentsOf:aMethod.
+        ] valueWithTimeout:10 seconds.
+        
         exampleComments notEmptyOrNil ifTrue:[
             exampleComments do:[:each |
                 |exampleCode|
@@ -2030,6 +2033,7 @@
 
     "Created: / 22-04-1996 / 20:03:30 / cg"
     "Modified: / 16-07-2017 / 11:28:18 / cg"
+    "Modified: / 25-05-2018 / 16:10:22 / Claus Gittinger"
 !
 
 printOutHTMLProtocolOf:aClass on:aStream