Update of /cvsroot/webmacro/webmacro/src/org/webmacro/tools
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv13775/src/org/webmacro/tools
Modified Files:
CheckTemplates.java
Log Message:
Checkstyle: utility classes should not have default or public constructors
Index: CheckTemplates.java
===================================================================
RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/tools/CheckTemplates.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** CheckTemplates.java 12 Jun 2003 00:47:48 -0000 1.7
--- CheckTemplates.java 20 Mar 2008 11:58:37 -0000 1.8
***************
*** 12,18 ****
/**
! * CheckTemplates
! *
! * Program which uses the WebMacro parser to validate templates
*
* @author Brian Goetz
--- 12,16 ----
/**
! * Program which uses the WebMacro parser to validate templates.
*
* @author Brian Goetz
***************
*** 25,28 ****
--- 23,28 ----
private static Broker broker;
+ private CheckTemplates() {}
+
public static void parseTemplate (String name, Reader in)
{
|