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() {
return "{" +
"Version: " + version + ',' +
"IndexPolicy: " + indexPolicy + ',' +
"CreatedAt: " + createdAt + ',' +
"StartIndexPtr: " + startIndexPtr + ',' +
"EndIndexPtr: " + endIndexPtr + ',' +
"IPVersion: " + ipVersion + ',' +
"RuntimePtrBytes: " + runtimePtrBytes +
"Version:" + version + ',' +
"IndexPolicy:" + indexPolicy + ',' +
"CreatedAt:" + createdAt + ',' +
"StartIndexPtr:" + startIndexPtr + ',' +
"EndIndexPtr:" + endIndexPtr + ',' +
"IPVersion:" + ipVersion + ',' +
"RuntimePtrBytes:" + runtimePtrBytes +
'}';
}
}