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:
ebanks 2009-03-13 18:48:11 +00:00
parent 45d69397b7
commit c33a779f33
2 changed files with 2 additions and 2 deletions

View File

@ -24,5 +24,5 @@ public interface ReadWalker<MapType, ReduceType> {
ReduceType reduceInit();
ReduceType reduce(MapType value, ReduceType sum);
void onTraveralDone();
void onTraversalDone();
}

View File

@ -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 ) {