mirror of
https://github.com/FranzHaidnor/haidnorJVM.git
synced 2026-03-14 06:03:50 +08:00
update Slot toString()
This commit is contained in:
@@ -19,10 +19,6 @@ public class Slot {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
final StringBuilder sb = new StringBuilder("Slot{");
|
return "Slot{" + "num=" + num + ", ref=" + ref + '}';
|
||||||
sb.append("num=").append(num);
|
|
||||||
sb.append(", ref=").append(ref);
|
|
||||||
sb.append('}');
|
|
||||||
return sb.toString();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user