import jalview.schemes.ColourSchemeI;
import jalview.util.ColorUtils;
import jalview.util.Comparison;
-import jalview.util.MessageManager;
+import jalview.util.Constants;
import java.awt.Color;
import java.util.Map;
protected Color applyByConsensusSecondaryStructure(Color currentColour, int column)
{
if (ssConsensusProfileMap == null &&
- ssConsensusProfileMap.get(MessageManager.getString("option.ss_providers_all")) == null)
+ ssConsensusProfileMap.get(Constants.SS_ALL_PROVIDERS) == null)
{
return currentColour;
}
ProfilesI consensusSSProfileForAllSources =
- ssConsensusProfileMap.get(MessageManager.getString("option.ss_providers_all"));
+ ssConsensusProfileMap.get(Constants.SS_ALL_PROVIDERS);
ProfileI profile = consensusSSProfileForAllSources.get(column);
if(profile != null)