Make the Standard Doclet version 1.4.1 not complain WRT '.'s.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137345 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2003-05-29 21:02:53 +00:00
parent 41136c4f00
commit e36ffc4ce7
1 changed files with 3 additions and 3 deletions

View File

@ -62,17 +62,17 @@
* @author Stephen Colebourne
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
* @since 2.0
* @version $Id: ClassUtils.java,v 1.11 2003/05/28 16:20:31 ggregory Exp $
* @version $Id: ClassUtils.java,v 1.12 2003/05/29 21:02:53 ggregory Exp $
*/
public class ClassUtils {
/**
* The package separator character: <code>.</code>
* The package separator character: <code>&#x2e;</code>
*/
public static final char PACKAGE_SEPARATOR_CHAR = '.';
/**
* The package separator String: <code>.</code>
* The package separator String: <code>&#x2e;</code>
*/
public static final String PACKAGE_SEPARATOR = String.valueOf(PACKAGE_SEPARATOR_CHAR);