We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/dkharrat/NexusDialog/blob/88978bdb58f81230d2c3778509b09fcce2bfce69/nexusdialog/src/main/java/com/github/dkharrat/nexusdialog/controllers/FormSectionController.java
public FormElementController removeElement(FormElementController element) { return elements.remove(element.getName()); }
maybe need to add orderedElements.remove(element);
or just change to public FormElementController removeElement(FormElementController element) { return removeElement(element.getName()); }
The text was updated successfully, but these errors were encountered:
Good catch! You're right, this is a bug. Should be:
public FormElementController removeElement(FormElementController element) { return removeElement(element.getName()); }
I'll fix this in the next release.
Sorry, something went wrong.
Merge pull request dkharrat#8 from flibbertigibbet/feature/subclassab…
def13de
…le-image-controller Make it easy to subclass ImageController.
55f244c
No branches or pull requests
https://github.com/dkharrat/NexusDialog/blob/88978bdb58f81230d2c3778509b09fcce2bfce69/nexusdialog/src/main/java/com/github/dkharrat/nexusdialog/controllers/FormSectionController.java
public FormElementController removeElement(FormElementController element) {
return elements.remove(element.getName());
}
maybe need to add orderedElements.remove(element);
or just change to
public FormElementController removeElement(FormElementController element) {
return removeElement(element.getName());
}
The text was updated successfully, but these errors were encountered: