Skip to content
This repository was archived by the owner on Nov 26, 2020. It is now read-only.

Latest commit

 

History

History
21 lines (13 loc) · 694 Bytes

File metadata and controls

21 lines (13 loc) · 694 Bytes

Mataram: the java decompiler

a decompiler which decompiles class file to a compilable java file.

this project is a part of fixRTM project. This decompiler is created to decompile Real Train Mod and NGTLib to modify RTM and NGTLib so the Main target java version is java 8. However, its welcome Pull Requests to support new version of java.

Why not FernFlower or JD-core?

FernFlower sometimes is not able to infer the type of constant values. e.g. the value 0 will decompiled into false

JD-Core cannot decompile calling static method with instance.

this.staticMethod() will be compiled to this; staticMethod().

Special Thanks

@nagise : The person who named this project.