added: #version_CVS
authorClaus Gittinger <cg@exept.de>
Sat, 20 Aug 2011 13:45:22 +0200
changeset 230 8bedc75a8de4
parent 229 a625ee084c26
child 231 b8aec6c9cf8b
added: #version_CVS
MCPackageCache.st
--- a/MCPackageCache.st	Sat Aug 20 13:45:16 2011 +0200
+++ b/MCPackageCache.st	Sat Aug 20 13:45:22 2011 +0200
@@ -8,17 +8,18 @@
 !
 
 
-!MCPackageCache class methodsFor:'as yet unclassified'!
+!MCPackageCache class methodsFor:'initialization'!
 
 new
-	^ self basicNew initialize
+    ^self basicNew initialize
 ! !
 
 !MCPackageCache methodsFor:'as yet unclassified'!
 
 initialize
-	sorter _ MCVersionSorter new.
-	fileNames _ Dictionary new.
+	super initialize.
+	sorter := MCVersionSorter new.
+	fileNames := Dictionary new.
 !
 
 recordVersionInfo: aVersionInfo forFileNamed: aString
@@ -34,5 +35,13 @@
 !MCPackageCache class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCPackageCache.st,v 1.1 2006-11-22 13:20:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCPackageCache.st,v 1.2 2011-08-20 11:45:22 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCPackageCache.st,v 1.2 2011-08-20 11:45:22 cg Exp $'
+!
+
+version_SVN
+    ^ '§Id: MCPackageCache.st 7 2010-09-12 07:18:55Z vranyj1 §'
 ! !