We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using jd-core version 1.1.3 from Maven, I decompiled the following class:
import java.io.InputStream; public class FilterInputStream extends java.io.FilterInputStream { protected FilterInputStream(InputStream in) { super(in); } }
I got the result:
import java.io.FilterInputStream; import java.io.InputStream; public class FilterInputStream extends FilterInputStream { protected FilterInputStream(InputStream in) { super(in); } }
The decompiled version does not compile because it uses "extends FilterInputStream" instead of "extends java.io.FilterInputStream".
The text was updated successfully, but these errors were encountered:
This bug seems solved using github version, doesn't it?
Sorry, something went wrong.
No branches or pull requests
Using jd-core version 1.1.3 from Maven, I decompiled the following class:
I got the result:
The decompiled version does not compile because it uses "extends FilterInputStream" instead of "extends java.io.FilterInputStream".
The text was updated successfully, but these errors were encountered: