Skip to content

Commit dbf200d

Browse files
committed
Missing 'this.' qualifier to match the file.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@793391 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7001b66 commit dbf200d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/java/org/apache/commons/codec/StringEncoderComparator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class StringEncoderComparator implements Comparator {
4444
* broken NullPointerException creating comparator.
4545
*/
4646
public StringEncoderComparator() {
47-
stringEncoder = null; // Trying to use this will cause things to break
47+
this.stringEncoder = null; // Trying to use this will cause things to break
4848
}
4949

5050
/**

0 commit comments

Comments
 (0)