Skip to content

Commit

Permalink
Some style check fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
WeatherGod committed Apr 18, 2024
1 parent ea24e9f commit 181d07b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ public void testSetColorTable() {

// Explicitly spelling out the RGB channel values [0, 255]
// because there were some off-by-one errors in initial development.
int[] expectedRGBs = new int[] {0, 170, 255, // #00AAff
21, 20, 18, // #151412
222, 1, 171, // #DE01aB
16, 10, 187}; // #100ABB
int[] expectedRGBs = new int[] {0, 170, 255, // #00AAff
21, 20, 18, // #151412
222, 1, 171, // #DE01aB
16, 10, 187}; // #100ABB

int[] expectedTable = new int[3 * 256];
// The colortable uses black for the default color as per above,
Expand Down

0 comments on commit 181d07b

Please sign in to comment.