- Revision
- 1295
- Author
- rfscholte
- Date
- 2011-08-16 04:01:34 -0500 (Tue, 16 Aug 2011)
Log Message
TagParser is a utility class, so make it final and give it a private constructor
Modified Paths
Diff
Modified: trunk/qdox/src/main/java/com/thoughtworks/qdox/model/util/TagParser.java (1294 => 1295)
--- trunk/qdox/src/main/java/com/thoughtworks/qdox/model/util/TagParser.java 2011-08-15 10:19:09 UTC (rev 1294) +++ trunk/qdox/src/main/java/com/thoughtworks/qdox/model/util/TagParser.java 2011-08-16 09:01:34 UTC (rev 1295) @@ -28,8 +28,13 @@ import java.util.List; import java.util.Map; -public class TagParser { +public final class TagParser { + private TagParser() + { + // hide utility class constructor + } + /** * Create a StreamTokenizer suitable for parsing the tag text. */
To unsubscribe from this list please visit:
