BeeProjectDefinitionWriter.st
branchjv
changeset 4381 5f0582aa5462
parent 4377 cbf86fdee06c
child 4573 ba0441fba5fe
--- a/BeeProjectDefinitionWriter.st	Tue Oct 30 14:59:25 2018 +0000
+++ b/BeeProjectDefinitionWriter.st	Mon Nov 05 20:52:42 2018 +0000
@@ -85,16 +85,16 @@
 
     stream nextPutAll: '#('; cr.
     methods do:[:method | 
-        stream nextPut:'''';
+        stream nextPut:$';
                nextPutAll: method mclass name;
                nextPutAll: '>>';
-               nextPutAll: method seelctore;
-               nextPut:'''';
+               nextPutAll: method selector;
+               nextPut:$';
                cr.
     ].
     stream nextPutAll: ') do: [:string | project addMethod: string].'
 
-    "Modified: / 03-11-2015 / 07:07:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 30-10-2018 / 15:48:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 fileOutFooterOn:aStream