Skip to content

Commit

Permalink
fixes file path encoding issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jamessanders committed Feb 1, 2013
1 parent 08beda2 commit 5e921a7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions java/src/main/java/com/jsync/ResourceCopier.java
Expand Up @@ -69,6 +69,7 @@ public static void performDeletions(IResource source, IResource destination, IRe
if (destination.isDirectory()) { if (destination.isDirectory()) {
for (IResource resource : destination.list()) { for (IResource resource : destination.list()) {
IResource counterpart = source.join(resource.getName()); IResource counterpart = source.join(resource.getName());
System.out.println(counterpart);
IResource backupTo = null; IResource backupTo = null;
if (backup != null) { if (backup != null) {
backupTo = backup.join(resource.getName()); backupTo = backup.join(resource.getName());
Expand Down

0 comments on commit 5e921a7

Please sign in to comment.