Update of /cvsroot/webmacro/webmacro/src/org/webmacro/util
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv8181/src/org/webmacro/util
Modified Files:
HTMLEscaper.java
Log Message:
Checkstyle: Utility classes should not have a public or default constructor.
Index: HTMLEscaper.java
===================================================================
RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/util/HTMLEscaper.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** HTMLEscaper.java 5 Dec 2003 20:18:13 -0000 1.9
--- HTMLEscaper.java 20 Mar 2008 14:16:50 -0000 1.10
***************
*** 29,33 ****
public class HTMLEscaper
{
!
/**
* This method will take the input and escape characters that have
--- 29,35 ----
public class HTMLEscaper
{
! /** Utility classes should not have a public or default constructor. */
! private HTMLEscaper() {}
!
/**
* This method will take the input and escape characters that have
|