Just to let you know the getFile() method of your TextFileLoader class recurses:
public function getFile(Void):File { return getFile(); }
I think it should read:
public function getFile(Void):File { return this.getTextFile(); }
Regards Andy
This should be already fixed in the CVS version. Sorry for the inconvenience.
yours Martin.
Log in to post a comment.
Just to let you know the getFile() method of your TextFileLoader class recurses:
public function getFile(Void):File {
return getFile();
}
I think it should read:
public function getFile(Void):File {
return this.getTextFile();
}
Regards
Andy
This should be already fixed in the CVS version. Sorry for the inconvenience.
yours
Martin.