update Slot toString()

This commit is contained in:
wangxiang
2023-07-22 16:47:04 +08:00
parent 38e512e0ef
commit 1edd2e8509

View File

@@ -19,10 +19,6 @@ public class Slot {
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("Slot{");
sb.append("num=").append(num);
sb.append(", ref=").append(ref);
sb.append('}');
return sb.toString();
return "Slot{" + "num=" + num + ", ref=" + ref + '}';
}
}