155cfcb1f8
Remove "SuppressWarnings" and "//noinspection" on java to kotlin conversion
16 lines
235 B
Java
Vendored
16 lines
235 B
Java
Vendored
@SuppressWarnings("ALL")
|
|
public class A{
|
|
|
|
@SuppressWarnings("ALL")
|
|
public A(){
|
|
|
|
}
|
|
|
|
@SuppressWarnings("ALL")
|
|
public int b = 0;
|
|
|
|
@SuppressWarnings("ALL")
|
|
public void a(@SuppressWarnings("ALL") int i){
|
|
|
|
}
|
|
} |