Javadoc
This commit is contained in:
parent
be5fea4fad
commit
47f433f490
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue