mirror of
https://github.com/zxing/zxing.git
synced 2025-01-27 11:01:00 -08:00
Modified some comments to reflect that these objects are thread-safe but not reentrant.
git-svn-id: https://zxing.googlecode.com/svn/trunk@974 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
0c3a4b4b5a
commit
406f353e53
|
@ -34,8 +34,7 @@ import java.util.Vector;
|
|||
* <p>This class attempts to find finder patterns in a QR Code. Finder patterns are the square
|
||||
* markers at three corners of a QR Code.</p>
|
||||
*
|
||||
* <p>This class is not thread-safe and should not be reused.</p>
|
||||
* TODO(dswitkin): Is this comment still true? I don't see any global variables for example.
|
||||
* <p>This class is thread-safe but not reentrant. Each thread must allocate its own object.
|
||||
*
|
||||
* <p>In contrast to {@link FinderPatternFinder}, this class will return an array of all possible
|
||||
* QR code locations in the image.</p>
|
||||
|
|
|
@ -32,8 +32,7 @@ import java.util.Vector;
|
|||
* pasted and stripped down here for maximum performance but does unfortunately duplicate
|
||||
* some code.</p>
|
||||
*
|
||||
* <p>This class is not thread-safe.</p>
|
||||
* TODO(dswitkin): Is this still true?
|
||||
* <p>This class is thread-safe but not reentrant. Each thread must allocate its own object.
|
||||
*
|
||||
* @author Sean Owen
|
||||
*/
|
||||
|
|
|
@ -31,8 +31,7 @@ import java.util.Vector;
|
|||
* <p>This class attempts to find finder patterns in a QR Code. Finder patterns are the square
|
||||
* markers at three corners of a QR Code.</p>
|
||||
*
|
||||
* <p>This class is not thread-safe and should not be reused.</p>
|
||||
* TODO(dswitkin): Is this still true?
|
||||
* <p>This class is thread-safe but not reentrant. Each thread must allocate its own object.
|
||||
*
|
||||
* @author Sean Owen
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue