From bdc03af209e195b8d9720c921026d944f02c0407 Mon Sep 17 00:00:00 2001 From: Benjamin Root Date: Thu, 18 Apr 2024 10:30:00 -0400 Subject: [PATCH] Some style check fixes --- .../test/java/ucar/nc2/geotiff/TestGeoTiffPalette.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cdm/misc/src/test/java/ucar/nc2/geotiff/TestGeoTiffPalette.java b/cdm/misc/src/test/java/ucar/nc2/geotiff/TestGeoTiffPalette.java index 20710db72a..01149b2e1d 100644 --- a/cdm/misc/src/test/java/ucar/nc2/geotiff/TestGeoTiffPalette.java +++ b/cdm/misc/src/test/java/ucar/nc2/geotiff/TestGeoTiffPalette.java @@ -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,