blob: 0a54bd2498b9888a639ad31862bbb92547558566 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
public class ToStringNewStyle {
int b;
double c;
int f;
int d;
int f() {
return 0;
}
int g;
int h;
int i;
int j;
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "ToStringNewStyle(a=" + this.b + ", c=" + this.c + ", e=" + this.d + ", f=" + this.f() + ", g=" + this.g + ", i=" + this.i + ", h=" + this.h + ")";
}
}
|