implement File.toString

This commit is contained in:
Joel Dice 2011-03-25 18:47:56 -06:00
parent 838cf9fdd1
commit 20baef4e69

View File

@ -82,6 +82,10 @@ public class File {
}
}
public String toString() {
return getPath();
}
public String getPath() {
return path;
}