Skip to content

Commit

Permalink
chore: Reformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGT96 committed Nov 25, 2024
1 parent 0139b58 commit 2cf96c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/isf/menu/gui/UserEdit.java
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ private JComboBox<UserGroup> getUserGroupComboBox() {
if (insert) {
if (groups != null) {
for (UserGroup group : groups) {
if(!group.isDeleted()) {
if (!group.isDeleted()) {
userGroupComboBox.addItem(group);
}
}
Expand All @@ -353,7 +353,7 @@ private JComboBox<UserGroup> getUserGroupComboBox() {
UserGroup selectedUserGroup = null;
if (groups != null) {
for (UserGroup group : groups) {
if(!group.isDeleted()) {
if (!group.isDeleted()) {
userGroupComboBox.addItem(group);
if (user.getUserGroupName().equals(group)) {
selectedUserGroup = group;
Expand Down

0 comments on commit 2cf96c0

Please sign in to comment.