J2K: fixed conversion of Throwable.getMessage(), Throwable.getCause(), Map.Entry.getKey() and Map.Entry.getValue()

This commit is contained in:
Valentin Kipyatkov
2015-10-20 13:59:17 +03:00
parent 8dde7497e0
commit 36ea9cfbfc
4 changed files with 50 additions and 7 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ internal object FileRead {
}
`in`.close()
} catch (e: Exception) {
System.err.println("Error: " + e.getMessage())
System.err.println("Error: " + e.message)
}
}