Fix windows file separator bug

This commit is contained in:
Chris Myers 2017-07-09 19:41:17 -06:00
parent 71fdaa1109
commit 5810d56b4a
44 changed files with 1266 additions and 1482 deletions

View file

@ -632,7 +632,7 @@ public class Learn
public void getDotFile(String filename, String directory, SpeciesCollection collection, NetCon network) throws BioSimException
{
Map<String, String> speciesToNode;
File fout = new File(directory + GlobalConstants.separator + filename);
File fout = new File(directory + File.separator + filename);
FileOutputStream fos = null;
OutputStreamWriter osw = null;
try