Skip to content

Commit

Permalink
CheatSheetCategoryBasedSelectionDialog fix binary boolean expression
Browse files Browse the repository at this point in the history
  • Loading branch information
EcljpseB0T authored and jukzi committed Jun 9, 2023
1 parent 12d6ffd commit 0c5559d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ private void saveMRU(List<String> mostRecentList, String key, String selection)
if (selection.length() > 0 && !mostRecentList.contains(selection)) {
mostRecentList.add(0, selection);
}
for (int i = 0; i < MOST_RECENT_LENGTH & i < mostRecentList.size(); i++) {
for (int i = 0; i < MOST_RECENT_LENGTH && i < mostRecentList.size(); i++) {
String name = mostRecentList.get(i);
if (name.length() > 0) {
settings.put(key + i, name);
Expand Down

0 comments on commit 0c5559d

Please sign in to comment.