Skip to content

Commit

Permalink
Make the fields of the Glasbey LUT public.
Browse files Browse the repository at this point in the history
  • Loading branch information
tinevez committed Nov 11, 2024
1 parent 2f88ed2 commit 449a401
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/mastodon/ui/coloring/GlasbeyLut.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public class GlasbeyLut
{

private static final Color[] colors = new Color[] {
public static final Color[] colors = new Color[] {
new Color( 255, 255, 255 ),
new Color( 20, 20, 255 ),
new Color( 255, 20, 20 ),
Expand Down Expand Up @@ -295,7 +295,7 @@ public class GlasbeyLut
new Color( 189, 117, 101 )
};

private static final int[] intColors;
public static final int[] intColors;
static
{
intColors = new int[ colors.length ];
Expand Down

0 comments on commit 449a401

Please sign in to comment.