X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2FColorUtils.java;h=6734735f3fcd7af0654ef443b97b9319452b7599;hb=dc5a5883cfe90255079e41538e56bc433bd1e4a5;hp=60129fb8d634c459f83f152176f03bd7ee8c9caf;hpb=b6b044f8887234eb5ee0146064b906f5ca2a74a5;p=jalview.git diff --git a/src/jalview/util/ColorUtils.java b/src/jalview/util/ColorUtils.java index 60129fb..6734735 100644 --- a/src/jalview/util/ColorUtils.java +++ b/src/jalview/util/ColorUtils.java @@ -24,6 +24,8 @@ package jalview.util; +import java.util.Locale; + import java.awt.Color; import java.util.HashMap; import java.util.Map; @@ -32,6 +34,7 @@ import java.util.Random; public class ColorUtils { private static final int MAX_CACHE_SIZE = 1729; + /* * a cache for colours generated from text strings */ @@ -324,7 +327,7 @@ public class ColorUtils return null; } Color col = null; - name = name.toLowerCase(); + name = name.toLowerCase(Locale.ROOT); // or make a static map; or use reflection on the field name switch (name)