This commit is contained in:
Gary Gregory 2024-05-18 09:53:44 -04:00
parent be5fea4fad
commit 47f433f490
3 changed files with 4 additions and 3 deletions

View File

@ -161,7 +161,7 @@ public class CharSetUtils {
}
/**
* Implementation of delete and keep
* Implements delete and keep.
*
* @param str String to modify characters within
* @param set String[] set of characters to modify

View File

@ -32,7 +32,7 @@ import java.io.Writer;
public abstract class CodePointTranslator extends CharSequenceTranslator {
/**
* Implementation of translate that maps onto the abstract translate(int, Writer) method.
* Implements translate to map onto the abstract translate(int, Writer) method.
* {@inheritDoc}
*/
@Override

View File

@ -28,8 +28,9 @@ import java.io.Writer;
*/
@Deprecated
public class UnicodeUnpairedSurrogateRemover extends CodePointTranslator {
/**
* Implementation of translate that throws out unpaired surrogates.
* Implements translate that throws out unpaired surrogates.
* {@inheritDoc}
*/
@Override