PerforceSourceCodeManager.st
branchjv
changeset 4061 8d6d7c54f8a6
parent 3970 6137854c2085
parent 4057 e57545459e2b
child 4086 aafed7101969
--- a/PerforceSourceCodeManager.st	Mon Jun 06 12:32:59 2016 +0100
+++ b/PerforceSourceCodeManager.st	Tue Jun 14 08:59:01 2016 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
@@ -494,14 +496,15 @@
      into the source repository. If the force argument is true, no merge is done;
      instead, the code is checked in as given (Dangerous).
      Return true if ok, false if not."
-    ^self basicCheckinClass:cls 
-    fileName:classFileName 
-    directory:packageDir 
-    module:moduleName 
-    logMessage:logMessage 
-    force:forceArg 
-    submit:doSubmit
-    fileContents:nil.
+    ^ self 
+        basicCheckinClass:cls 
+        fileName:classFileName 
+        directory:packageDir 
+        module:moduleName 
+        logMessage:logMessage 
+        force:forceArg 
+        submit:doSubmit
+        fileContents:nil.
 !
 
 basicCheckinClass:cls