(String feature, float value)
| 14 | public final float _value; |
| 15 | |
| 16 | public FontVariation(String feature, float value) { |
| 17 | this(FourByteTag.fromString(feature), value); |
| 18 | } |
| 19 | |
| 20 | public String getTag() { |
| 21 | return FourByteTag.toString(_tag); |
nothing calls this directly
no test coverage detected