(String feature, int value, long start, long end)
| 22 | public static final FontFeature[] EMPTY = new FontFeature[0]; |
| 23 | |
| 24 | public FontFeature(String feature, int value, long start, long end) { |
| 25 | this(FourByteTag.fromString(feature), value, start, end); |
| 26 | } |
| 27 | |
| 28 | public FontFeature(String feature, int value) { |
| 29 | this(FourByteTag.fromString(feature), value, GLOBAL_START, GLOBAL_END); |
nothing calls this directly
no test coverage detected