You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a result of execution is used only once, can it be inlined?
Jadx usually does this, but with a condition: method invocation order must be preserved. And in this case, it is not possible because of Boolean.valueOf(true); method. Anyway, that boolean variables used twice so they will not be inlined. To fix this issue I need to implement "reboxing" to convert valueOf call to constants. So it is not a bug fix but a whole new feature :)
P.S. In the previous version of apk (2019-06-20) there is no such issue in this method and this is sad :(
Checks before report
Describe error
Class
com.paypal.android.p2pmobile.appconfig.configNode.AtmFinderConfig
If a result of execution is used only once, can it be inlined?
APK: https://drive.google.com/file/d/1fCN9PXu8Zw4Kdnhgd0_qmzEvgWLfEU-9/view?usp=sharing
The text was updated successfully, but these errors were encountered: