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:
parent
98a6ea6f1a
commit
bb99d6906b
|
@ -28,7 +28,7 @@ package org.apache.commons.lang;
|
|||
* @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 class CharSetUtils {
|
|||
}
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
// 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());
|
||||
|
|
Loading…
Reference in New Issue