1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

Personal_wikis: Add hack to handle rarely-reproducible problem of editing-after-renaming

This commit is contained in:
gnosygnu
2017-02-12 11:36:08 -05:00
parent f7a7ba00f3
commit 935dda389a
2 changed files with 8 additions and 4 deletions

View File

@@ -145,9 +145,7 @@ public class IoEngine_system extends IoEngine_base {
}
return buffer.toByteArray();
}
@Override public boolean ExistsDir(Io_url url) {
return new File(url.Xto_api()).exists();
}
@Override public boolean ExistsDir(Io_url url) {return new File(url.Xto_api()).exists();}
@Override public void CreateDir(Io_url url) {new File(url.Xto_api()).mkdirs();}
@Override public void DeleteDir(Io_url url) {
File dir = new File(url.Xto_api());