remove leftover equals/hashcode

This commit is contained in:
javanna 2015-11-13 19:36:18 +01:00 committed by Luca Cavanna
parent 97f4f27b14
commit 26569045ef
1 changed files with 0 additions and 22 deletions

View File

@ -277,28 +277,6 @@ public final class MutateProcessor implements Processor {
}
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
MutateProcessor that = (MutateProcessor) o;
return Objects.equals(update, that.update) &&
Objects.equals(rename, that.rename) &&
Objects.equals(convert, that.convert) &&
Objects.equals(split, that.split) &&
Objects.equals(gsub, that.gsub) &&
Objects.equals(join, that.join) &&
Objects.equals(remove, that.remove) &&
Objects.equals(trim, that.trim) &&
Objects.equals(uppercase, that.uppercase) &&
Objects.equals(lowercase, that.lowercase);
}
@Override
public int hashCode() {
return Objects.hash(update, rename, convert, split, gsub, join, remove, trim, uppercase, lowercase);
}
public static final class Factory implements Processor.Factory<MutateProcessor> {
@Override
public MutateProcessor create(Map<String, Object> config) throws IOException {