Loading graphics/java/android/graphics/Path.java +2 −2 Original line number Diff line number Diff line Loading @@ -375,9 +375,9 @@ public class Path { */ public enum Direction { /** clockwise */ CW (0), // must match enum in SkPath.h CW (1), // must match enum in SkPath.h /** counter-clockwise */ CCW (1); // must match enum in SkPath.h CCW (2); // must match enum in SkPath.h Direction(int ni) { nativeInt = ni; Loading Loading
graphics/java/android/graphics/Path.java +2 −2 Original line number Diff line number Diff line Loading @@ -375,9 +375,9 @@ public class Path { */ public enum Direction { /** clockwise */ CW (0), // must match enum in SkPath.h CW (1), // must match enum in SkPath.h /** counter-clockwise */ CCW (1); // must match enum in SkPath.h CCW (2); // must match enum in SkPath.h Direction(int ni) { nativeInt = ni; Loading