mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 12:22:31 +00:00
11 lines
204 B
Java
11 lines
204 B
Java
// skip-compare-contents
|
|
@lombok.EqualsAndHashCode(of={"y"})
|
|
final class EqualsAndHashCodeWarnOf {
|
|
int x;
|
|
}
|
|
|
|
@lombok.EqualsAndHashCode(exclude={"y"})
|
|
final class EqualsAndHashCodeWarnExclude {
|
|
int x;
|
|
}
|