corrected spelling of method
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@50 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
45d69397b7
commit
c33a779f33
|
|
@ -24,5 +24,5 @@ public interface ReadWalker<MapType, ReduceType> {
|
|||
ReduceType reduceInit();
|
||||
ReduceType reduce(MapType value, ReduceType sum);
|
||||
|
||||
void onTraveralDone();
|
||||
void onTraversalDone();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class BaseQualityHistoWalker implements ReadWalker<Integer, Integer> {
|
|||
return value + sum;
|
||||
}
|
||||
|
||||
public void onTraveralDone() {
|
||||
public void onTraversalDone() {
|
||||
int lastNonZero = -1;
|
||||
for ( int i = this.qualCounts.length-1; i >= 0; i-- ) {
|
||||
if ( this.qualCounts[i] > 0 ) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue