No synthetic property for false get-method like "issue()"

This commit is contained in:
Valentin Kipyatkov
2015-09-25 16:37:13 +03:00
parent 8f1a3043de
commit 20bddce18d
6 changed files with 20 additions and 5 deletions
@@ -90,7 +90,7 @@ public final class JvmAbi {
: SET_PREFIX + CapitalizeDecapitalizeKt.capitalizeAsciiOnly(propertyName);
}
private static boolean startsWithIsPrefix(String name) {
public static boolean startsWithIsPrefix(String name) {
if (!name.startsWith(IS_PREFIX)) return false;
if (name.length() == IS_PREFIX.length()) return false;
char c = name.charAt(IS_PREFIX.length());