OtherChange.st
changeset 4249 e9410a264048
parent 2871 edd5c5b18492
--- a/OtherChange.st	Wed Jul 05 10:56:05 2017 +0200
+++ b/OtherChange.st	Thu Jul 13 16:25:15 2017 +0200
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic3' }"
 
+"{ NameSpace: Smalltalk }"
+
 Change subclass:#OtherChange
 	instanceVariableNames:'type file position'
 	classVariableNames:''
@@ -79,6 +81,16 @@
     type := something.
 ! !
 
+!OtherChange methodsFor:'applying'!
+
+apply
+    "apply the change"
+
+    Transcript showCR:'other change ignored'
+
+    "Created: / 05-07-2017 / 10:14:51 / cg"
+! !
+
 !OtherChange methodsFor:'printing & storing'!
 
 printOn:aStream
@@ -97,9 +109,10 @@
 !OtherChange class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/OtherChange.st,v 1.5 2012-07-31 12:23:08 vrany Exp $'
+    ^ '$Header$'
 !
 
 version_SVN
-    ^ '§Id: OtherChange.st 1942 2012-07-27 14:53:23Z vranyj1 §'
+    ^ '$Id$'
 ! !
+