From eaaa7f2937b29788239211e2231a2f3fcb8927c1 Mon Sep 17 00:00:00 2001 From: gmungoc Date: Thu, 29 Sep 2016 13:17:53 +0100 Subject: [PATCH] JAL-2213 made RESNUM constant private (not used elsewhere) to reduce confusion --- src/jalview/io/PDBFeatureSettings.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jalview/io/PDBFeatureSettings.java b/src/jalview/io/PDBFeatureSettings.java index ecce1a3..5294c45 100644 --- a/src/jalview/io/PDBFeatureSettings.java +++ b/src/jalview/io/PDBFeatureSettings.java @@ -8,10 +8,10 @@ import java.awt.Color; public class PDBFeatureSettings extends FeatureSettingsAdapter { + // TODO find one central place to define feature names + private static final String FEATURE_INSERTION = "INSERTION"; - public static final String FEATURE_INSERTION = "INSERTION"; - - public static final String FEATURE_RES_NUM = "RESNUM"; + private static final String FEATURE_RES_NUM = "RESNUM"; @Override public boolean isFeatureDisplayed(String type) -- 1.7.10.2