GDBThread.st
changeset 72 eb4eea3ebf4c
parent 70 6d7285bb1703
child 78 c24e7d8bc881
--- a/GDBThread.st	Tue Mar 10 10:00:55 2015 +0000
+++ b/GDBThread.st	Wed Mar 18 14:19:37 2015 +0000
@@ -96,13 +96,15 @@
             result := debugger send: (GDBMI_thread_info new arguments: { id }).
             infos := result propertyAt: #threads.
             self assert: (infos isEmptyOrNil or:[ infos size == 1 and:[ infos first id = id ] ]).
-            infos isEmptyOrNil ifTrue:[ GDBThreadInfo new setId: id state: GDBThreadStateTerminated theOneAndOnlyInstance ] ifFalse:[ infos first ]
+            infos isEmptyOrNil 
+                ifTrue:[ GDBThreadInfo new setId: id state: GDBThreadStateTerminated theOneAndOnlyInstance ] 
+                ifFalse:[ infos first ]
         ].
     ].
     ^ info value
 
     "Created: / 08-03-2015 / 09:07:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 08-03-2015 / 12:35:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 18-03-2015 / 13:58:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !GDBThread methodsFor:'displaying'!