x
authorvrany
Sat, 09 Jul 2011 16:28:56 +0200
changeset 2449 7938e9083e06
parent 2448 1f8e749d18d8
child 2450 d1d723fa7d56
x
CVSSourceCodeManager.st
--- a/CVSSourceCodeManager.st	Sat Jul 09 16:27:53 2011 +0200
+++ b/CVSSourceCodeManager.st	Sat Jul 09 16:28:56 2011 +0200
@@ -1286,6 +1286,19 @@
 
 !CVSSourceCodeManager class methodsFor:'queries'!
 
+isResponsibleForPackage:aString
+
+    | id |
+
+    "JV@2011-07-09: The real check is too slow. Cache needed here"
+    ^true.
+
+"/    id := aString asPackageId. 
+"/    ^self checkForExistingModule: id module directory: id directory.
+
+    "Created: / 09-07-2011 / 14:32:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 managerTypeName
     ^ 'CVS'
 
@@ -4911,7 +4924,7 @@
 !CVSSourceCodeManager class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.391 2011-07-05 16:24:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.392 2011-07-09 14:28:56 vrany Exp $'
 ! !
 
 CVSSourceCodeManager initialize!