added missing javadoc for private method, as per checkstyle

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@151295 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2005-02-04 02:37:30 +00:00
parent 98a6ea6f1a
commit bb99d6906b
1 changed files with 9 additions and 2 deletions

View File

@ -28,7 +28,7 @@
* @author Phil Steitz
* @author Gary Gregory
* @since 1.0
* @version $Id: CharSetUtils.java,v 1.33 2004/03/10 23:31:53 scolebourne Exp $
* @version $Id$
*/
public class CharSetUtils {
@ -308,7 +308,14 @@ public static String delete(String str, String[] set) {
}
//-----------------------------------------------------------------------
// Implementation of delete and keep
/**
* Implementation of delete and keep
*
* @param str String to modify characters within
* @param set String[] set of characters to modify
* @param expect whether to evaluate on match, or non-match
* @return modified String
*/
private static String modify(String str, String[] set, boolean expect) {
CharSet chars = evaluateSet(set);
StringBuffer buffer = new StringBuffer(str.length());