Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Commit

Permalink
Removed unused functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
bpross-52n committed Jul 12, 2013
1 parent 695719f commit 4f002a5
Showing 1 changed file with 1 addition and 22 deletions.
Expand Up @@ -158,28 +158,7 @@ public GrassProcessRepository() {
*/
}
}
}

try {

File n52appDataDir = new File(System.getenv("APPDATA") + fileSeparator + "52nWPS");

if(!n52appDataDir.exists()){
n52appDataDir.mkdir();
}

BufferedWriter bwrite = new BufferedWriter(new FileWriter(n52appDataDir + fileSeparator + "config.txt"));

bwrite.write("Python_Home = " + pythonHome + "\n");
bwrite.write("Addon_Dir = " + addonPath);

bwrite.flush();
bwrite.close();

} catch (IOException e1) {
e1.printStackTrace();
}

}

// initialize after properties are fetched
GrassProcessDescriptionCreator creator = new GrassProcessDescriptionCreator();
Expand Down

0 comments on commit 4f002a5

Please sign in to comment.