declex icon indicating copy to clipboard operation
declex copied to clipboard

Populate methods not being linked if they are not declared with Public modifier

Open smaugho opened this issue 6 years ago • 0 comments

Inside a Fragment, a Populate method is not being linked to the user interface if it is not declared with public, so this is not linked:

@Populate
String someMethod() {
    return "..";
}

Right now you are forced to use public:

@Populate
public String someMethod() {
    return "..";
}

smaugho avatar Aug 13 '17 12:08 smaugho