Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move states assignment back to original line
  • Loading branch information
noah-livio committed Dec 17, 2021
commit 9a82059396adb75c55a673dfe66a7f7e8d4ccf54
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ public SoftButtonObject(@NonNull String name, @NonNull List<SoftButtonState> sta
}

this.name = name;
this.states = states;
this.currentStateName = initialStateName;
this.buttonId = SOFT_BUTTON_ID_NOT_SET_VALUE;
this.onEventListener = onEventListener;
this.states = states;
}

/**
Expand Down