SVN__CheckoutCommand.st
changeset 492 74ff0960961c
parent 429 a243e3368c63
child 749 bfe48a1eb888
--- a/SVN__CheckoutCommand.st	Mon Oct 19 14:25:27 2009 +0200
+++ b/SVN__CheckoutCommand.st	Mon Oct 19 14:52:48 2009 +0200
@@ -2,7 +2,7 @@
 
 "{ NameSpace: SVN }"
 
-nil subclass:#CheckoutCommand
+UpdateLikeCommand subclass:#CheckoutCommand
 	instanceVariableNames:''
 	classVariableNames:''
 	poolDictionaries:''
@@ -20,13 +20,13 @@
     "Created: / 15-03-2008 / 23:48:44 / janfrog"
 !
 
-svnCmdArgumentsOn: arg 
+svnCmdArgumentsOn: arg
     "raise an error: must be redefined in concrete subclass(es)"
-    
+
     super svnCmdArgumentsOn: arg.
     arg
-        nextPut: self url asString;
-        nextPut: '.'
+	nextPut: self url asString;
+	nextPut: '.'
 
     "Created: / 15-03-2008 / 23:48:44 / janfrog"
     "Modified: / 19-03-2008 / 12:44:01 / janfrog"