(final float h, final float s, final float l, final float a)
| 56 | } |
| 57 | |
| 58 | public static int hsla(final float h, final float s, final float l, final float a) { |
| 59 | return hslToColor(h, s, l, a); |
| 60 | } |
| 61 | |
| 62 | public static int hsl(final float h, final float s, final float l) { |
| 63 | return hslToColor(h, s, l); |
nothing calls this directly
no test coverage detected