#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Thu, 16 Feb 2017 14:14:42 +0100
changeset 21459 afc01857037e
parent 21458 f9ff2c1811fd
child 21460 9eb25f04ec5f
#REFACTORING by stefan class: FileStream changed: #fileInNotifying:passChunk: shorten method chain
FileStream.st
--- a/FileStream.st	Thu Feb 16 14:14:08 2017 +0100
+++ b/FileStream.st	Thu Feb 16 14:14:42 2017 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -1958,7 +1960,9 @@
      return the value of the last chunk.
      Someone (which is usually some codeView) is notified of errors."
 
-    ^ self fileInNotifying:notifiedLoader passChunk:passChunk inDirectory:(self pathName asFilename directory).
+    ^ self fileInNotifying:notifiedLoader passChunk:passChunk inDirectory:(self fileName directory).
+
+    "Modified: / 16-02-2017 / 11:28:21 / stefan"
 !
 
 fileInNotifying:notifiedLoader passChunk:passChunk inDirectory:aDirectory