From: gmungoc Date: Thu, 22 Sep 2016 15:00:48 +0000 (+0100) Subject: JAL-1421 use declared type of ResidueProperties.propHash X-Git-Tag: Release_2_10_0~39^2^2~1 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=2d929333bca5ab8b060e0792227d784513d6c2fd;p=jalview.git JAL-1421 use declared type of ResidueProperties.propHash --- diff --git a/src/jalview/analysis/Conservation.java b/src/jalview/analysis/Conservation.java index 19a6514..711710b 100755 --- a/src/jalview/analysis/Conservation.java +++ b/src/jalview/analysis/Conservation.java @@ -251,8 +251,7 @@ public class Conservation // Now loop over the properties for (String type : ResidueProperties.propHash.keySet()) { - Hashtable ht = (Hashtable) ResidueProperties.propHash - .get(type); + Map ht = ResidueProperties.propHash.get(type); // Have we ticked this before? if (!resultHash.containsKey(type))