#QUALITY by exept cvs_MAIN
authorClaus Gittinger <cg@exept.de>
Mon, 26 Aug 2019 10:06:10 +0200
branchcvs_MAIN
changeset 3941 35c5061a7fe0
parent 3940 0384371831e4
child 3942 e6b2235d6f0c
#QUALITY by exept class: GroovySourceFileWriter changed: #fileOutCommentLine:on:
GroovySourceFileWriter.st
--- a/GroovySourceFileWriter.st	Mon Aug 26 10:05:55 2019 +0200
+++ b/GroovySourceFileWriter.st	Mon Aug 26 10:06:10 2019 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1996-2015 by Claus Gittinger
 
@@ -20,6 +22,8 @@
 "
 "{ Package: 'stx:libjava' }"
 
+"{ NameSpace: Smalltalk }"
+
 AbstractSourceFileWriter subclass:#GroovySourceFileWriter
 	instanceVariableNames:''
 	classVariableNames:''
@@ -85,7 +89,9 @@
 fileOutCommentLine:aString on:aStream
     "superclass AbstractSourceFileWriter says that I am responsible to implement this method"
 
-    ^ aStream nextPutAll:'// '; nextPutAll: aString
+    aStream 
+        nextPutAll:'// '; 
+        nextPutAll:aString
 
     "Modified: / 18-02-2012 / 18:35:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
@@ -99,7 +105,7 @@
 !GroovySourceFileWriter class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libjava/GroovySourceFileWriter.st,v 1.5 2015-03-20 12:07:59 vrany Exp $'
+    ^ '$Header$'
 !
 
 version_HG
@@ -108,6 +114,6 @@
 !
 
 version_SVN
-    ^ 'Id'
+    ^ '$Id$'
 ! !