-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
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
[core] Failed to find minimal casts for resolve overloaded methods #856
Comments
Another simpler example is in class package com.ss.p678a.p680b;
/* renamed from: com.ss.a.b.h */
public class C14932h {
/* JADX DEBUG: Failed to find minimal casts for resolve overloaded methods, cast all args instead
method: ClspMth{java.lang.String.replace(char, char):java.lang.String}
arg types: [int, int]
candidates:
ClspMth{java.lang.String.replace(java.lang.CharSequence, java.lang.CharSequence):java.lang.String}
ClspMth{java.lang.String.replace(char, char):java.lang.String} */
/* renamed from: a */
public static java.lang.String m20842a(java.lang.String str) {
return (str == null || str.length() <= 0) ? "" : str.trim().replace('\'', ' ').replace('\"', ' ').replace(13, ' ').replace(10, ' ');
}
} in this case value |
@skylot |
@sergey-wowwow second case is fixed. |
@skylot |
Hi, seems that this issue was caused by a recent commit
Example in class
com.ludashi.dualspace.util.pref.SharedPrefProvider
APK: https://drive.google.com/file/d/17DWQeByOGkCFdEC6h1yQzMSDpuhO5Fcx/view?usp=sharing
The text was updated successfully, but these errors were encountered: