TabFile: Make TRIM final

Change-Id: Ib9dd505a0f82e503fccbd9f2ac846b1c86184467
This commit is contained in:
David Pursehouse
2020-02-19 17:28:39 +09:00
parent 00ee6d308f
commit a38db710c5

View File

@@ -33,7 +33,7 @@ public class TabFile {
String parse(String str);
}
public static Parser TRIM = String::trim;
public static final Parser TRIM = String::trim;
protected static class Row {
public String left;