For predicate properties, two signatures are generated for the asserts. Unsure why its only for predicates and not for String, too.
public class FieldPropertyClash {
public String string;
public String getString() {
return "";
}
public boolean isBoolean;
public boolean isBoolean() { return false; }
}
Actual
- Two methods for each:
isBoolean and isNotBoolean are generated
Expected
Only generate methods for Getter, as is done for the String property.