Various code cleanup.

This commit is contained in:
2023-04-10 19:17:18 +02:00
parent ba896e689a
commit ff954a3903
5 changed files with 7 additions and 7 deletions

View File

@@ -336,7 +336,7 @@ public interface SuggestionsSupplier<S> {
/**
* List of all possible duration unit symbols for suggestions.
*/
public static final List<String> DURATION_SUFFIXES = List.of("y", "mo", "w", "d", "h", "m", "s");
List<String> DURATION_SUFFIXES = List.of("y", "mo", "w", "d", "h", "m", "s");
private static void scanAndRemovePastSuffixes(List<String> suffixes, String foundSuffix) {