(String tag, float min, float def, float max, boolean hidden)
| 18 | } |
| 19 | |
| 20 | public FontVariationAxis(String tag, float min, float def, float max, boolean hidden) { |
| 21 | this(FourByteTag.fromString(tag), min, def, max, hidden); |
| 22 | } |
| 23 | |
| 24 | public FontVariationAxis(String tag, float min, float def, float max) { |
| 25 | this(FourByteTag.fromString(tag), min, def, max, false); |
nothing calls this directly
no test coverage detected