Commit e7881ba6 authored by Adam Blank's avatar Adam Blank
Browse files

Make errorprone happy with Pixel.java

parent 9cf6def2
Pipeline #4740 failed with stage
in 0 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -25,7 +25,7 @@ public class Pixel {
}
public int toInt() {
return (a << 24) | (r << 16) | (g << 8) | (b);
return (a << 24) | (r << 16) | (g << 8) | b;
}
/**
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment