common/SCMAbstractPackageWorkingCopy.st
changeset 914 04391080b32d
parent 907 59504d1c153c
child 917 eeabc31b5c93
--- a/common/SCMAbstractPackageWorkingCopy.st	Thu Oct 08 18:33:52 2020 +0100
+++ b/common/SCMAbstractPackageWorkingCopy.st	Thu Oct 08 12:52:31 2020 +0100
@@ -205,25 +205,25 @@
     "Modified: / 28-02-2014 / 09:38:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-temporaryWorkingCopy
-    self ensureTemporaryWorkingCopy.
-    ^wc
+workingCopy
+    self ensureWorkingCopy.
+    ^ wc
 
     "Created: / 01-12-2012 / 00:26:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-temporaryWorkingCopyPath
+workingCopyPath
     "Return the directory which contains temporary working copy.
      The directory may not exists if the temporary working copy has
      not yet been initialized (which is done on demand)"
-
+    
     ^ self manager temporaryWorkingCopyDirectory / repository uuid printString
 
     "Created: / 05-02-2013 / 09:30:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-temporaryWorkingCopyRoot
-    self ensureTemporaryWorkingCopy.
+workingCopyRoot
+    self ensureWorkingCopy.
     ^ wcroot
 
     "Created: / 14-11-2012 / 23:51:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
@@ -249,7 +249,7 @@
     "Return a container as Filename with given name. If there's no such
      container, evaluates a block"            
 
-    ^self temporaryWorkingCopyRoot / aString
+    ^self workingCopyRoot / aString
 
     "Created: / 14-03-2014 / 22:18:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
@@ -464,7 +464,7 @@
 
 fileOutExtensions: extensionMethods
 
-    ^self fileOutExtensions: extensionMethods in: self temporaryWorkingCopyRoot
+    ^self fileOutExtensions: extensionMethods in: self workingCopyRoot
 
     "Created: / 30-12-2009 / 19:01:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 01-12-2012 / 00:47:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
@@ -877,9 +877,9 @@
     "Created: / 26-02-2014 / 22:43:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-ensureTemporaryWorkingCopy
+ensureWorkingCopy
     "raise an error: must be redefined in concrete subclass(es)"
-
+    
     ^ self subclassResponsibility
 ! !