GDBMICommand.st
changeset 85 6fea1000a2a5
parent 78 c24e7d8bc881
child 91 472a4841a8b6
--- a/GDBMICommand.st	Thu Jul 06 07:54:57 2017 +0200
+++ b/GDBMICommand.st	Tue Jul 11 23:37:04 2017 +0200
@@ -227,26 +227,6 @@
     "Modified: / 12-06-2014 / 00:43:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-!GDBMICommand methodsFor:'converting'!
-
-asString
-    ^ String streamContents: [ :s |
-        | args |
-        s nextPut: $-.
-        s nextPutAll: self operation.
-        args := self arguments.
-        args notEmptyOrNil ifTrue:[ 
-            args do:[:each | 
-                s space.
-                s nextPutAll: each asString.
-            ].
-        ].
-    ]
-
-    "Created: / 09-06-2014 / 18:42:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 20-06-2014 / 22:04:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-! !
-
 !GDBMICommand methodsFor:'testing'!
 
 isMICommand