mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Restore changed protected method to satisfy clirr, just in case something extends it.
This commit is contained in:
parent
5a1521dca2
commit
5284daa336
|
@ -374,6 +374,15 @@ public class FinderPatternFinder {
|
|||
return foundPatternCross(stateCount) ? centerFromEnd(stateCount, j) : Float.NaN;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated only exists for backwards compatibility
|
||||
* @see #handlePossibleCenter(int[], int, int)
|
||||
*/
|
||||
@Deprecated
|
||||
protected final boolean handlePossibleCenter(int[] stateCount, int i, int j, boolean pureBarcode) {
|
||||
return handlePossibleCenter(stateCount, i, j);
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>This is called when a horizontal scan finds a possible alignment pattern. It will
|
||||
* cross check with a vertical scan, and if successful, will, ah, cross-cross-check
|
||||
|
|
Loading…
Reference in a new issue