change default onTraversalDone to use the new output streams

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@249 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
jmaguire 2009-04-01 19:50:31 +00:00
parent 4faacac315
commit bb3dbb5756
1 changed files with 1 additions and 2 deletions

View File

@ -48,7 +48,6 @@ public abstract class Walker<MapType, ReduceType> {
public void initialize() { }
public void onTraversalDone(ReduceType result) {
// TODO: replace with the correct output stream
System.out.println("[REDUCE RESULT] Traversal result is: " + result);
out.println("[REDUCE RESULT] Traversal result is: " + result);
}
}