mirror of
https://github.com/FranzHaidnor/haidnorJVM.git
synced 2026-03-13 21:43:42 +08:00
update Slot toString()
This commit is contained in:
@@ -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 + '}';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user