Removing the Cloneable interface from StrBuilder as per LANG-302
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@655251 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4342bd5d69
commit
e1981a5d7b
|
@ -62,12 +62,16 @@ import org.apache.commons.lang.SystemUtils;
|
|||
* with invalid indices or null input, have been altered - see individual methods.
|
||||
* The biggest of these changes is that by default, null will not output the text
|
||||
* 'null'. This can be controlled by a property, {@link #setNullText(String)}.
|
||||
* <p>
|
||||
* Prior to 3.0, this class implemented Cloneable but did not implement the
|
||||
* clone method so could not be used. From 3.0 onwards it no longer implements
|
||||
* the interface.
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
* @since 2.2
|
||||
* @version $Id$
|
||||
*/
|
||||
public class StrBuilder implements Cloneable {
|
||||
public class StrBuilder {
|
||||
|
||||
/**
|
||||
* The extra capacity for new builders.
|
||||
|
|
Loading…
Reference in New Issue