LANG-772 ClassUtils.PACKAGE_SEPARATOR javadoc contains garbage text

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1202521 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-11-16 03:14:26 +00:00
parent 4f0e19fc5f
commit 7b7965bf46
2 changed files with 4 additions and 1 deletions

View File

@ -48,7 +48,7 @@ public class ClassUtils {
public static final char PACKAGE_SEPARATOR_CHAR = '.';
/**
* <p>The package separator String: {@code "&#x2e;"}.</p>
* <p>The package separator String: <code>"&#x2e;"</code>.</p>
*/
public static final String PACKAGE_SEPARATOR = String.valueOf(PACKAGE_SEPARATOR_CHAR);

View File

@ -21,6 +21,9 @@
</properties>
<body>
<release version="3.2" date="TBA" description="December release">
<action type="fix" issue="LANG-772">ClassUtils.PACKAGE_SEPARATOR javadoc contains garbage text</action>
</release>
<release version="3.1" date="2011-11-14" description="November release">
<action type="add" issue="LANG-760">Add API StringUtils.toString(byte[] intput, String charsetName)</action>
<action type="update" issue="LANG-758">Add an example with whitespace in StringUtils.defaultIfEmpty</action>