Removed unnecessary lines (options are already null by default)

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1065233 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-01-30 08:50:51 +00:00
parent c2ff15b0d0
commit bd7b736643
1 changed files with 0 additions and 2 deletions

View File

@ -50,8 +50,6 @@ public class UnicodeUnescaper extends CharSequenceTranslator {
public UnicodeUnescaper(OPTION... options) {
if(options.length > 0) {
this.options = EnumSet.copyOf(Arrays.asList(options));
} else {
this.options = null;
}
}