OnTraversalDone writes output to out now

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4203 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
depristo 2010-09-03 12:55:03 +00:00
parent 73d41bfa24
commit 3c9597d45a
1 changed files with 4 additions and 0 deletions

View File

@ -35,4 +35,8 @@ public class CountLociWalker extends LocusWalker<Integer, Long> implements TreeR
public Long treeReduce(Long lhs, Long rhs) {
return lhs + rhs;
}
public void onTraversalDone( Long c ) {
out.println(c);
}
}