In the package Filesystem,

FSPlatformResolver class >> forCurrentPlatform
| platformName |
platformName :=  SmalltalkImage current platformName.
^ (self allSubclasses detect: [:ea | ea platformName = platformName]) new

should be replaced by

FSPlatformResolver class >> forCurrentPlatform
| platformName |
platformName :=  OSPlatform platformName.
^ (self allSubclasses detect: [:ea | ea platformName = platformName]) new
_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Reply via email to