Skip to content
Snippets Groups Projects
Commit 5f3a456d authored by brinn's avatar brinn
Browse files

Do not change the path of a given file to be absolute in the constructor of HostAwareFile.

SVN: 26518
parent ed528b2b
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ public class HostAwareFile extends AbstractHashable implements Serializable ...@@ -43,7 +43,7 @@ public class HostAwareFile extends AbstractHashable implements Serializable
public HostAwareFile(final File path) public HostAwareFile(final File path)
{ {
this(null, path.getAbsolutePath(), null); this(null, path.getPath(), null);
} }
public HostAwareFile(final String hostOrNull, final String path, final String rsyncModuleOrNull) public HostAwareFile(final String hostOrNull, final String path, final String rsyncModuleOrNull)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment