remove the space

This commit is contained in:
lionsoul2014 2025-12-12 14:48:20 +08:00
parent 6059d63504
commit 9b0bedc045
1 changed files with 7 additions and 7 deletions

View File

@ -33,13 +33,13 @@ public class Header {
@Override public String toString() { @Override public String toString() {
return "{" + return "{" +
"Version: " + version + ',' + "Version:" + version + ',' +
"IndexPolicy: " + indexPolicy + ',' + "IndexPolicy:" + indexPolicy + ',' +
"CreatedAt: " + createdAt + ',' + "CreatedAt:" + createdAt + ',' +
"StartIndexPtr: " + startIndexPtr + ',' + "StartIndexPtr:" + startIndexPtr + ',' +
"EndIndexPtr: " + endIndexPtr + ',' + "EndIndexPtr:" + endIndexPtr + ',' +
"IPVersion: " + ipVersion + ',' + "IPVersion:" + ipVersion + ',' +
"RuntimePtrBytes: " + runtimePtrBytes + "RuntimePtrBytes:" + runtimePtrBytes +
'}'; '}';
} }
} }