declex icon indicating copy to clipboard operation
declex copied to clipboard

List Populate support method accepts only one method

Open smaugho opened this issue 6 years ago • 0 comments

When you have a list, which is backed up with a Populate support method, it accepts only one method even if signatures are different, for instance:


@Model
@Populate
List<Model> models;

@Populate
void models() {

}

@Populate
void models(Model_ model) {

}

Only one of both methods above will be taken into account.

smaugho avatar Jul 21 '17 10:07 smaugho