data-generator/datagen-plugin/src/main/java/it/cavallium/datagen/plugin/DetailsConfiguration.java

28 lines
511 B
Java
Raw Normal View History

2023-04-20 10:11:12 +02:00
package it.cavallium.datagen.plugin;
2022-02-20 02:56:51 +01:00
2022-07-19 02:10:14 +02:00
import java.util.Objects;
2022-02-20 02:56:51 +01:00
public class DetailsConfiguration {
public String changelog;
2022-07-19 02:10:14 +02:00
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DetailsConfiguration that = (DetailsConfiguration) o;
return Objects.equals(changelog, that.changelog);
}
@Override
public int hashCode() {
2022-07-19 02:45:20 +02:00
int hash = 0;
hash += ConfigUtils.hashCode(changelog);
return hash;
2022-07-19 02:10:14 +02:00
}
2022-02-20 02:56:51 +01:00
}