#TUNING by cg
authorClaus Gittinger <cg@exept.de>
Thu, 07 Apr 2016 19:42:30 +0200
changeset 3978 f41428f4ff65
parent 3977 b99486fe7447
child 3979 4f53968949c2
#TUNING by cg class: GitSourceCodeManager changed: #initialize lazy setup of source cache directory
GitSourceCodeManager.st
--- a/GitSourceCodeManager.st	Thu Apr 07 19:42:09 2016 +0200
+++ b/GitSourceCodeManager.st	Thu Apr 07 19:42:30 2016 +0200
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic3' }"
 
+"{ NameSpace: Smalltalk }"
+
 AbstractSourceCodeManager subclass:#GitSourceCodeManager
 	instanceVariableNames:''
 	classVariableNames:'Verbose DefaultRepository PerModuleRepositories DisabledModules
@@ -79,12 +81,12 @@
 "/        ^ self
 "/    ].
 
-    CacheDirectoryName isNil ifTrue:[
-        self initCacheDirPath.
-    ].
-    CachingSources isNil ifTrue:[
-        CachingSources := true.
-    ].
+"/    CacheDirectoryName isNil ifTrue:[
+"/        self initCacheDirPath.
+"/    ].
+"/    CachingSources isNil ifTrue:[
+"/        CachingSources := true.
+"/    ].
 
     "/
     "/ optionally set the WorkTreeDirectoryName from $STX_WORKTREE;
@@ -653,11 +655,11 @@
 !GitSourceCodeManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/GitSourceCodeManager.st,v 1.12 2014-07-21 11:26:26 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/GitSourceCodeManager.st,v 1.12 2014-07-21 11:26:26 cg Exp $'
+    ^ '$Header$'
 ! !