From 0210ec9fe9de8edbda1f7258e9097e201a5765ae Mon Sep 17 00:00:00 2001 From: srowen Date: Thu, 12 Mar 2009 21:17:06 +0000 Subject: [PATCH] Fixed tiny javadoc glitches git-svn-id: https://zxing.googlecode.com/svn/trunk@892 59b500cc-1b3d-0410-9834-0bbf25fbcc57 --- core/src/com/google/zxing/DecodeHintType.java | 2 +- .../zxing/common/detector/MonochromeRectangleDetector.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/com/google/zxing/DecodeHintType.java b/core/src/com/google/zxing/DecodeHintType.java index 4e84634a8..d39432cbc 100644 --- a/core/src/com/google/zxing/DecodeHintType.java +++ b/core/src/com/google/zxing/DecodeHintType.java @@ -53,7 +53,7 @@ public final class DecodeHintType { public static final DecodeHintType TRY_HARDER = new DecodeHintType(); /** - * Allowed lengths of encoded data -- reject anything else. Maps to an {@link int[]}. + * Allowed lengths of encoded data -- reject anything else. Maps to an int[]. */ public static final DecodeHintType ALLOWED_LENGTHS = new DecodeHintType(); diff --git a/core/src/com/google/zxing/common/detector/MonochromeRectangleDetector.java b/core/src/com/google/zxing/common/detector/MonochromeRectangleDetector.java index f3c70d3b2..3b3ced1a0 100644 --- a/core/src/com/google/zxing/common/detector/MonochromeRectangleDetector.java +++ b/core/src/com/google/zxing/common/detector/MonochromeRectangleDetector.java @@ -44,7 +44,7 @@ public final class MonochromeRectangleDetector { *

Detects a rectangular region of black and white -- mostly black -- with a region of mostly * white, in an image.

* - * @return {@link ResultPoint[]} describing the corners of the rectangular region. The first and last points + * @return {@link ResultPoint}[] describing the corners of the rectangular region. The first and last points * are opposed on the diagonal, as are the second and third. The first point will be the topmost point and * the last, the bottommost. The second point will be leftmost and the third, the rightmost * @throws ReaderException if no Data Matrix Code can be found