mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 20:20:46 +00:00
14 lines
320 B
Java
14 lines
320 B
Java
@SuppressWarnings("all")
|
|
class Annotation {
|
|
@Override
|
|
public String toString() {
|
|
return super.toString();
|
|
}
|
|
public void method(@SuppressWarnings("unused") int x) {
|
|
}
|
|
public void method2(@SuppressWarnings(value={"unused"}) int y) {
|
|
}
|
|
public void method3(@SuppressWarnings({"unused", "unchecked"}) int z) {
|
|
}
|
|
}
|