This commit is contained in:
MakKi (makki_d) 2018-11-23 20:58:29 +09:00 committed by Sean Owen
parent 79bdb2c84e
commit 6b3bf9ea40

View file

@ -104,7 +104,7 @@ final class MultiFinderPatternFinder extends FinderPatternFinder {
* size differs from the average among those patterns the least
* @throws NotFoundException if 3 such finder patterns do not exist
*/
private FinderPattern[][] selectMutipleBestPatterns() throws NotFoundException {
private FinderPattern[][] selectMultipleBestPatterns() throws NotFoundException {
List<FinderPattern> possibleCenters = getPossibleCenters();
int size = possibleCenters.size();
@ -282,7 +282,7 @@ final class MultiFinderPatternFinder extends FinderPatternFinder {
handlePossibleCenter(stateCount, i, maxJ);
}
} // for i=iSkip-1 ...
FinderPattern[][] patternInfo = selectMutipleBestPatterns();
FinderPattern[][] patternInfo = selectMultipleBestPatterns();
List<FinderPatternInfo> result = new ArrayList<>();
for (FinderPattern[] pattern : patternInfo) {
ResultPoint.orderBestPatterns(pattern);