moving things around and breaking cvs directory structure

This commit is contained in:
benfry
2002-07-22 15:49:07 +00:00
parent 2f332362ad
commit e2428068b5
4 changed files with 68 additions and 1 deletions

View File

@@ -1195,8 +1195,9 @@ public class PdeEditor extends Panel {
from.close(); // ??
to.close(); // ??
#ifdef JDK13
bfile.setLastModified(afile.lastModified()); // jdk13 required
#endif
} catch (IOException e) {
e.printStackTrace();
}
@@ -1215,7 +1216,9 @@ public class PdeEditor extends Panel {
if (source.isDirectory()) {
target.mkdirs();
copyDir(source, target);
#ifdef JDK13
target.setLastModified(source.lastModified());
#endif
} else {
copyFile(source, target);
}