Skip to content

Commit

Permalink
Rename setClickMask()I > getClickMask()I
Browse files Browse the repository at this point in the history
This made maven unable to do a incremental build for some reason.
  • Loading branch information
abextm committed Apr 12, 2018
1 parent 7d39310 commit 01630b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public interface Widget

void setContentType(int contentType);

int setClickMask();
int getClickMask();

void setClickMask(int mask);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ private void reorderPrayers()
Prayer prayer = prayerOrder[index];
Widget prayerWidget = prayerWidgets.get(prayer.ordinal());

int widgetConfig = prayerWidget.setClickMask();
int widgetConfig = prayerWidget.getClickMask();
if (config.unlockPrayerReordering())
{
// allow dragging of this widget
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public interface RSWidget extends Widget
int getRSParentId();

@Import("clickMask")
int setClickMask();
int getClickMask();

@Import("clickMask")
void setClickMask(int mask);
Expand Down

0 comments on commit 01630b6

Please sign in to comment.