Rename the parameter everywhere instead of just the method declaration

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1065224 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-01-30 08:15:38 +00:00
parent bc5f3e087a
commit 8a7c77060e
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class UnicodeUnescaper extends CharSequenceTranslator {
* @return whether the option is set
*/
public boolean isSet(OPTION option) {
return (options == null) ? false : options.contains(opt);
return (options == null) ? false : options.contains(option);
}
/**