renamed #binaryContents
authorClaus Gittinger <cg@exept.de>
Sat, 03 Oct 1998 17:56:59 +0200
changeset 3865 fae8d6f1942e
parent 3864 7579a0090a6a
child 3866 3e0bbf9b4438
renamed #binaryContents
Filename.st
--- a/Filename.st	Sat Oct 03 17:56:16 1998 +0200
+++ b/Filename.st	Sat Oct 03 17:56:59 1998 +0200
@@ -2285,7 +2285,7 @@
 
 !Filename methodsFor:'queries-contents'!
 
-binaryContents
+binaryContentsOfEntireFile
     "return the binary contents of the file as a byteArray;
      or nil, if the file is unreadable."
 
@@ -2299,7 +2299,7 @@
     ] valueNowOrOnUnwindDo:[s close].
     ^ contents
 
-    "Created: / 3.10.1998 / 17:46:38 / cg"
+    "Created: / 3.10.1998 / 17:56:39 / cg"
 !
 
 contents
@@ -3058,6 +3058,6 @@
 !Filename class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.138 1998-10-03 15:56:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.139 1998-10-03 15:56:59 cg Exp $'
 ! !
 Filename initialize!