Skip to content
Snippets Groups Projects
Commit 1807175a authored by tjc's avatar tjc
Browse files

fix for wondows loading URLs

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@9060 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 92cb5d55
Branches
Tags
No related merge requests found
......@@ -286,7 +286,13 @@ public class Wizard
}
String properties[] = inLine.split("\t");
String fileName = properties[11] + File.separator + properties[10];
final String separator;
if (properties[11].indexOf ("://") != -1)
separator = "/";
else
separator = File.separator;
String fileName = properties[11] + separator + properties[10];
Entry entry;
if(!fileEntrys.containsKey(fileName))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment