Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-stoehr committed Feb 14, 2023
1 parent 58a3f2f commit 6d76320
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ public void updateSuggestions(String input) {
if (Objects.nonNull(processForm)) {
if (matcherNextCategory.find()) {
// strings ends with " | "
// process category should be suggested
suggestions = createSuggestionsForProcessCategory(matcherNextCategory.group());
} else {
// process value should be suggested
Expand All @@ -169,7 +168,6 @@ public void updateSuggestions(String input) {
} else if (Objects.nonNull(taskForm)) {
if (matcherNextCategory.find()) {
// strings ends with " | "
// process/task category should be suggested
suggestions = createSuggestionsForTaskCategory(matcherNextCategory.group());
} else {
// process/task value should be suggested
Expand All @@ -181,7 +179,6 @@ public void updateSuggestions(String input) {
} else if (Objects.nonNull(userForm)) {
if (matcherNextCategory.find()) {
// strings ends with " | "
// user category should be suggested
suggestions = createSuggestionsForUserCategory(matcherNextCategory.group());
}
}
Expand Down

0 comments on commit 6d76320

Please sign in to comment.