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:
parent
73d41bfa24
commit
3c9597d45a
|
|
@ -35,4 +35,8 @@ public class CountLociWalker extends LocusWalker<Integer, Long> implements TreeR
|
||||||
public Long treeReduce(Long lhs, Long rhs) {
|
public Long treeReduce(Long lhs, Long rhs) {
|
||||||
return lhs + rhs;
|
return lhs + rhs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void onTraversalDone( Long c ) {
|
||||||
|
out.println(c);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue