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
With latest git version, "Use dx convert" and "dx" options this example can't be recompiled:
public class ArrayOfObjectCast { public Number getFirstAsNumber(Object objectArray) { Object[] arr = (Object[]) objectArray; return (Number) arr[0]; } }
Jadx decompiles this to:
public class ArrayOfObjectCast { public Number getFirstAsNumber(Object objectArray) { Object arr = (Object[]) objectArray; return (Number) arr[0]; } }
With d8 or java-input-plugin erverything is fine.
The text was updated successfully, but these errors were encountered:
fix: keep types on duplicate cast remove (#1527)
1533b7f
Fixed. Caused by funny issue in Java compiler, fixed in Java 9, was open for 9 years 🤣
Sorry, something went wrong.
No branches or pull requests
With latest git version, "Use dx convert" and "dx" options this example can't be recompiled:
Jadx decompiles this to:
With d8 or java-input-plugin erverything is fine.
The text was updated successfully, but these errors were encountered: