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
@sergey-wowwow in this case jadx was incorrectly change type of method parameter from Long to long. I commit a fix for that.
Also, this method is a nice sample to show how many boxing (and unboxing) methods can be removed:
publicbooleanhasValidItem(Idid, Longl) {
if (l == null) {
l = 900000L;
}
Pair<Long, ActivityItem> pair = this.mItemLruCache.get(id);
if (pair == null) {
returnfalse;
}
returnpair.first + l > SystemClock.uptimeMillis();
}
Anyway, now jadx only replace boxing of constants, like: Long.valueOf(900000) to 900000L.
Checks before report
Describe error
Probably it's a regression one :)
File
com/paypal/android/p2pmobile/activityitems/model/ActivityItemsModel.java
APK: https://drive.google.com/file/d/1fCN9PXu8Zw4Kdnhgd0_qmzEvgWLfEU-9/view?usp=sharing
The text was updated successfully, but these errors were encountered: