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
OnSdlChoiceChosen contains class definitions that are already defined elsewhere.
For example, the class has the following definition:
public class SdlSubMenu { private Integer _menuID = null; private Integer _position = null; private String _menuName = null; // Constructor SdlSubMenu(Integer menuID, Integer position, String menuName) { _menuID = menuID; _position = position; _menuName = menuName; } // Restrict no-arg constructor private SdlSubMenu() {} // Public Getters public Integer getMenuID() { return _menuID; } public String getMenuName() { return _menuName; } public String toString() { return _menuName; } }
This class contains nearly the exact same methods and variables that are already defined as part of the AddSubMenu class.
These duplicate classes should be removed in favor of the existing classes.
The text was updated successfully, but these errors were encountered:
mrapitis
No branches or pull requests
OnSdlChoiceChosen contains class definitions that are already defined elsewhere.
For example, the class has the following definition:
This class contains nearly the exact same methods and variables that are already defined as part of the AddSubMenu class.
These duplicate classes should be removed in favor of the existing classes.
The text was updated successfully, but these errors were encountered: