ProtocolVersion.toString() space (#2343)

This commit is contained in:
creeper123123321 2021-02-13 09:21:02 -03:00 committed by GitHub
parent 50bfc86706
commit a141f871a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -248,6 +248,6 @@ public class ProtocolVersion {
@Override
public String toString() {
return String.format("%s(%d)", this.name, this.version);
return String.format("%s (%d)", this.name, this.version);
}
}