declex icon indicating copy to clipboard operation
declex copied to clipboard

Actions not being processed in method with same name

Open smaugho opened this issue 6 years ago • 0 comments

In a scenario where an action is in a method with the same name than other, but which takes a different parameter type:

    public void loadCompleteSection(Section_ section) {
        this.loadCompleteSection(section.getSectionId());
    }

    public void loadCompleteSection(String sectionId) {
       //Here we have actions
    }

The second method (which contains actions, and action selectors), is not processed by the Actions processor.

smaugho avatar Aug 09 '17 20:08 smaugho