fix path seperator

master
yihua.huang 2014-05-02 17:06:34 +08:00
parent e8d4a9be2b
commit 8e4814bdc5
1 changed files with 1 additions and 1 deletions

View File

@ -22,10 +22,10 @@ public class FilePersistentBase {
}
public void setPath(String path) {
this.path = path;
if (!path.endsWith(PATH_SEPERATOR)) {
path += PATH_SEPERATOR;
}
this.path = path;
}
public File getFile(String fullName) {