From 373586a0c940f2345179d1135738f245e29a98b8 Mon Sep 17 00:00:00 2001 From: gmungoc Date: Wed, 21 Dec 2016 14:50:48 +0000 Subject: [PATCH] JAL-1421 add types to Map --- src/jalview/schemes/CovariationColourScheme.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/jalview/schemes/CovariationColourScheme.java b/src/jalview/schemes/CovariationColourScheme.java index ee78317..3637ce3 100644 --- a/src/jalview/schemes/CovariationColourScheme.java +++ b/src/jalview/schemes/CovariationColourScheme.java @@ -24,6 +24,7 @@ import jalview.datamodel.AlignmentAnnotation; import jalview.datamodel.AnnotatedCollectionI; import jalview.datamodel.SequenceCollectionI; import jalview.datamodel.SequenceI; +import jalview.util.ColorUtils; import java.awt.Color; import java.util.Hashtable; @@ -37,9 +38,9 @@ import java.util.Map; */ public class CovariationColourScheme extends ResidueColourScheme { - public Hashtable helixcolorhash = new Hashtable(); + public Map helixcolorhash = new Hashtable(); - public Hashtable positionsToHelix = new Hashtable(); + public Map positionsToHelix = new Hashtable(); int numHelix = 0; @@ -86,8 +87,8 @@ public class CovariationColourScheme extends ResidueColourScheme for (int j = 0; j <= numHelix; j++) { - helixcolorhash.put(Integer.toString(j), - jalview.util.ColorUtils.generateRandomColor(Color.white)); + helixcolorhash.put(String.valueOf(j), + ColorUtils.generateRandomColor(Color.white)); } } @@ -124,12 +125,12 @@ public class CovariationColourScheme extends ResidueColourScheme Color currentColour = Color.white; String currentHelix = null; // System.out.println(c + " " + j); - currentHelix = (String) positionsToHelix.get(j); + currentHelix = positionsToHelix.get(j); // System.out.println(positionsToHelix.get(j)); if (currentHelix != null) { - currentColour = (Color) helixcolorhash.get(currentHelix); + currentColour = helixcolorhash.get(currentHelix); } // System.out.println(c + " " + j + " helix " + currentHelix + " " + -- 1.7.10.2