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
Currently this method is
public void swapLocalizationsElement(int index1, int index2){ String tmp1, tmp2; tmp1 = ((StringProperty)getList(PROP_LOCALIZATIONS).get(index1)).getString(); tmp2 = ((StringProperty)getList(PROP_LOCALIZATIONS).get(index2)).getString(); ((StringProperty)getList(PROP_LOCALIZATIONS).get(index1)).setString(tmp2); ((StringProperty)getList(PROP_LOCALIZATIONS).get(index2)).setString(tmp1); } //method
generated into every class and element. Instead the content of this method can be generalized.
public void swapLocalizationsElement(int index1, int index2){ swapListElement(PROP_LOCALIZATIONS, index1, index1); }
The text was updated successfully, but these errors were encountered:
#37 also previous commit refers to the same issue and was tagged wrongly
5f26fcc
No branches or pull requests
Currently this method is
generated into every class and element. Instead the content of this method can be generalized.
The text was updated successfully, but these errors were encountered: