[virtualcommons-svn] SF.net SVN: virtualcommons:[24] csidex/trunk
Status: Beta
Brought to you by:
alllee
From: <al...@us...> - 2008-08-05 20:07:12
|
Revision: 24 http://virtualcommons.svn.sourceforge.net/virtualcommons/?rev=24&view=rev Author: alllee Date: 2008-08-05 20:07:15 +0000 (Tue, 05 Aug 2008) Log Message: ----------- changing Archiva URL and fixing a compile error in Persister (though we need to rethink XmlSet persistence since it makes performance incredibly slow) Modified Paths: -------------- csidex/trunk/pom.xml csidex/trunk/src/main/java/edu/asu/commons/experiment/Persister.java Modified: csidex/trunk/pom.xml =================================================================== --- csidex/trunk/pom.xml 2008-08-05 00:36:14 UTC (rev 23) +++ csidex/trunk/pom.xml 2008-08-05 20:07:15 UTC (rev 24) @@ -10,7 +10,7 @@ <repository> <id>csid.asu.edu</id> <name>CSID Maven2 repository</name> - <url>http://csid.asu.edu:8080/archiva/repository/internal</url> + <url>http://csid.asu.edu/archiva/repository/internal</url> </repository> <repository> <id>java.net</id> Modified: csidex/trunk/src/main/java/edu/asu/commons/experiment/Persister.java =================================================================== --- csidex/trunk/src/main/java/edu/asu/commons/experiment/Persister.java 2008-08-05 00:36:14 UTC (rev 23) +++ csidex/trunk/src/main/java/edu/asu/commons/experiment/Persister.java 2008-08-05 20:07:15 UTC (rev 24) @@ -53,6 +53,7 @@ // private final XStream xstream = new XStream(); // private PrintWriter xmlPrintWriter; private boolean xmlEnabled; + private XmlSet xmlSet; // private boolean usingEventChannel; @@ -315,11 +316,12 @@ } private void saveExperimentConfiguration(T experimentConfiguration) { - try { doSaveExperimentConfiguration(experimentConfiguration, persistenceDirectory); } catch (FileNotFoundException recoverable) { + // FIXME: this is duplicated across the regular save() as well, + // see if we can extract the algorithm out. recoverable.printStackTrace(); try { doSaveExperimentConfiguration(experimentConfiguration, getFailSafeSaveDirectory()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |