Fix build error.

This commit is contained in:
Enyby
2019-10-20 18:43:10 +03:00
parent ac3475deee
commit 4db34780b7

View File

@@ -133,7 +133,7 @@ public class JseIoLib extends IoLib {
this( null, null, o );
}
public String tojstring() {
return "file (" + (this.closed ? "closed" : this.hashCode()) + ")";
return "file (" + (this.closed ? "closed" : String.valueOf(this.hashCode())) + ")";
}
public boolean isstdfile() {
return file == null;