Skip to content

Commit

Permalink
fix some other warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dickschoeller committed May 17, 2020
1 parent d033288 commit 78e5418
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import java.util.Map;
import java.util.StringTokenizer;

import org.apache.commons.lang3.tuple.ImmutablePair;
Expand Down Expand Up @@ -82,6 +81,9 @@ public Calendar getSortCalendar() {
return parseCalendar(dateString);
}

/**
* List of prefixes handled by strip and simple approximation.
*/
private static final List<Pair<String, Approximation>> LIST = new ArrayList<>();
static {
LIST.add(new ImmutablePair<>(ABT, Approximation.ABOUT));
Expand Down

0 comments on commit 78e5418

Please sign in to comment.