blob: 2beee75649087e2730b67db43e33f18874223631 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
class ToStringAutoExclude {
int x;
String $a;
transient String b;
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "ToStringAutoExclude(x=" + this.x + ", b=" + this.b + ")";
}
}
class ToStringAutoExclude2 {
int x;
String $a;
transient String b;
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "ToStringAutoExclude2(x=" + this.x + ", $a=" + this.$a + ", b=" + this.b + ")";
}
}
|