remove methods that are the identical to superclasses methods
authorStefan Vogel <sv@exept.de>
Thu, 21 Sep 2006 17:42:44 +0200
changeset 10001 3f9586203b24
parent 10000 c9ccef36dcb3
child 10002 3a70c4f5afe0
remove methods that are the identical to superclasses methods
PositionableStream.st
--- a/PositionableStream.st	Thu Sep 21 17:36:55 2006 +0200
+++ b/PositionableStream.st	Thu Sep 21 17:42:44 2006 +0200
@@ -91,16 +91,6 @@
 
 !PositionableStream class methodsFor:'Signal constants'!
 
-currentFileInDirectoryQuerySignal
-    "return the querySignal, which can be used to ask for the current directory
-     during a fileIn (that is the directory where the filed-in file resides),
-     and in a fileBrowsers doIt.
-     Using this, allows for the loaded code or doIts to ask for the fileBrowsers
-     current directory, by asking this querySignal (which is nice sometimes)."
-
-    ^ CurrentFileInDirectoryQuerySignal
-!
-
 invalidPositionErrorSignal
     "return the signal raised if positioning is attempted to an
      invalid position (i.e. before the begin of the stream or after
@@ -125,14 +115,6 @@
     "Modified: / 13-07-2006 / 20:36:54 / cg"
 ! !
 
-!PositionableStream class methodsFor:'queries'!
-
-currentFileInDirectory
-    "during a fileIn (if a script), the script can ask for the current directory"
-
-    ^ CurrentFileInDirectoryQuerySignal query
-! !
-
 !PositionableStream methodsFor:'Compatibility-Dolphin'!
 
 endChunk
@@ -608,7 +590,7 @@
 !PositionableStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PositionableStream.st,v 1.147 2006-07-13 18:37:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PositionableStream.st,v 1.148 2006-09-21 15:42:44 stefan Exp $'
 ! !
 
 PositionableStream initialize!