(@NotNull Point[] points, @NotNull PathVerb[] verbs, @NotNull float[] conicWeights, @NotNull PathFillMode fillMode)
| 32 | } |
| 33 | |
| 34 | @NotNull @Contract("_, _, _, _ -> new") |
| 35 | public static Path makeRaw(@NotNull Point[] points, @NotNull PathVerb[] verbs, @NotNull float[] conicWeights, @NotNull PathFillMode fillMode) { |
| 36 | return makeRaw(points, verbs, conicWeights, fillMode, false); |
| 37 | } |
| 38 | |
| 39 | @NotNull @Contract("_, _, _, _, _ -> new") |
| 40 | public static Path makeRaw(@NotNull Point[] points, @NotNull PathVerb[] verbs, @NotNull float[] conicWeights, @NotNull PathFillMode fillMode, boolean isVolatile) { |
no test coverage detected