Skip to content

Commit f96c605

Browse files
committed
Match variable name to other copyData method for consistency.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1073778 13f79535-47bb-0310-9956-ffa450edef68
1 parent 1277e6d commit f96c605

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/java/org/apache/commons/codec/language/ColognePhonetic.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,9 @@ public void addRight(char chr) {
220220
}
221221

222222
protected char[] copyData(int start, final int length) {
223-
char[] retData = new char[length];
224-
System.arraycopy(data, start, retData, 0, length);
225-
return retData;
223+
char[] newData = new char[length];
224+
System.arraycopy(data, start, newData, 0, length);
225+
return newData;
226226
}
227227
}
228228

0 commit comments

Comments
 (0)