From: gmungoc Date: Thu, 29 Sep 2016 12:17:53 +0000 (+0100) Subject: JAL-2213 made RESNUM constant private (not used elsewhere) to reduce X-Git-Tag: Release_2_10_0~27 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=eaaa7f2937b29788239211e2231a2f3fcb8927c1;p=jalview.git JAL-2213 made RESNUM constant private (not used elsewhere) to reduce confusion --- 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)