[Joafip-svn] SF.net SVN: joafip:[2913] trunk/joafip-4test/src/main/java/net/sf/joafip/ performance
Brought to you by:
luc_peuvrier
|
From: <luc...@us...> - 2011-10-02 08:34:09
|
Revision: 2913
http://joafip.svn.sourceforge.net/joafip/?rev=2913&view=rev
Author: luc_peuvrier
Date: 2011-10-02 08:34:03 +0000 (Sun, 02 Oct 2011)
Log Message:
-----------
problems with static field modified when persisted
Modified Paths:
--------------
trunk/joafip-4test/src/main/java/net/sf/joafip/performance/items/service/MainExportScanner.java
Modified: trunk/joafip-4test/src/main/java/net/sf/joafip/performance/items/service/MainExportScanner.java
===================================================================
--- trunk/joafip-4test/src/main/java/net/sf/joafip/performance/items/service/MainExportScanner.java 2011-10-02 08:33:34 UTC (rev 2912)
+++ trunk/joafip-4test/src/main/java/net/sf/joafip/performance/items/service/MainExportScanner.java 2011-10-02 08:34:03 UTC (rev 2913)
@@ -196,10 +196,9 @@
count++;
final Iterator<String> iterator = attrQue.descendingIterator();
for (int count = 0; count < 2; count++) {
- System.out.println(iterator.next());
+ iterator.next();
}
final String attrs = iterator.next();
- System.out.println(attrs);
printWriter.print(attrs);
printWriter.print(", value=");
printWriter.println(value);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|