Revision: 481 http://cishell.svn.sourceforge.net/cishell/?rev=481&view=rev Author: mwlinnem Date: 2007-08-16 15:20:00 -0700 (Thu, 16 Aug 2007) Log Message: ----------- Removed extraneous file separator. Modified Paths: -------------- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/TestFileKeeper.java Modified: trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/TestFileKeeper.java =================================================================== --- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/TestFileKeeper.java 2007-08-16 22:13:37 UTC (rev 480) +++ trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/TestFileKeeper.java 2007-08-16 22:20:00 UTC (rev 481) @@ -18,16 +18,9 @@ //TODO: How should we expose this to the user? static { String fs = File.separator; - -//Replaced by Bonnie -/* DEFAULT_ROOT_DIR = "My Documents"+fs+"workspace" + fs + "org.cishell." - + "testing.convertertester.core.new" + fs + "src" + fs + - "org" + fs + "cishell" + fs + "testing" + fs + - "convertertester" + fs + "core" + fs + "test_files" + fs; -*/ - System.out.println("osgi.install.area:"+System.getProperty("osgi.install.area")); - - DEFAULT_ROOT_DIR = System.getProperty("osgi.install.area").replace("file:","") + fs + "converter_test_files" + fs; + DEFAULT_ROOT_DIR = + System.getProperty("osgi.install.area"). + replace("file:","") + "converter_test_files" + fs; } public static final String DEFAULT_ROOT_DIR; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |