mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
11 lines
172 B
Java
11 lines
172 B
Java
@interface Nullable {
|
|
}
|
|
|
|
@lombok.EqualsAndHashCode(onParam=@__({@Nullable}))
|
|
class EqualsAndHashCodeWithOnParam {
|
|
int x;
|
|
boolean[] y;
|
|
Object[] z;
|
|
String a;
|
|
String b;
|
|
} |