From 4db34780b7afcc8c553cfedb17a4175aeb8d02f2 Mon Sep 17 00:00:00 2001 From: Enyby Date: Sun, 20 Oct 2019 18:43:10 +0300 Subject: [PATCH] Fix build error. --- src/jse/org/luaj/vm2/lib/jse/JseIoLib.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jse/org/luaj/vm2/lib/jse/JseIoLib.java b/src/jse/org/luaj/vm2/lib/jse/JseIoLib.java index d00d5db1..cfaf6f4a 100644 --- a/src/jse/org/luaj/vm2/lib/jse/JseIoLib.java +++ b/src/jse/org/luaj/vm2/lib/jse/JseIoLib.java @@ -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;