#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Thu, 11 Apr 2019 18:37:15 +0200
changeset 4418 d95613d2327a
parent 4417 815732df18e8
child 4419 ea0144a6e7fe
#REFACTORING by stefan class: PerforceSourceCodeManager class changed: #checkForExistingModule:directory: use \"asFilename pathName\" instead of \"asFilename asAbsoluteFilename pathName\" ist is equivalent!
PerforceSourceCodeManager.st
--- a/PerforceSourceCodeManager.st	Thu Apr 11 18:28:54 2019 +0200
+++ b/PerforceSourceCodeManager.st	Thu Apr 11 18:37:15 2019 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
@@ -673,13 +675,15 @@
 
     modulePath :=  moduleName , '/' , packageDir.
 
-    inDirectory := (Filename currentDirectory asAbsoluteFilename) pathName.
+    inDirectory := Filename currentDirectory pathName.
     workSpace := self getWorkSpaceForPackage:moduleName.
-    ^workSpace notNil
+    ^ workSpace notNil
 
 "
     self checkForExistingModule:'testModule' directory:'libTestPerforce'
 "
+
+    "Modified: / 11-04-2019 / 18:06:49 / Stefan Vogel"
 !
 
 checkin:containerFilename text:someText directory:packageDir module:moduleName logMessage:logMessage force:force onBranch:branchNameOrNil