Unnecessary cast from char[] to char[].

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@234327 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2005-08-21 19:38:56 +00:00
parent 3196dafff0
commit 9a6a8b6862
1 changed files with 1 additions and 1 deletions

View File

@ -1056,7 +1056,7 @@ public Object clone() {
try {
StrTokenizer cloned = (StrTokenizer) super.clone();
if (cloned.chars != null) {
cloned.chars = (char[]) cloned.chars;
cloned.chars = cloned.chars;
}
cloned.reset();
return cloned;