Skip to content

Commit

Permalink
Improved variable scope and mutability.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Sep 4, 2015
1 parent e66d061 commit f1c0e70
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -75,9 +75,9 @@
*/
public class Mmff {

public static String MMFF_ADJLIST_CACHE = "mmff.adjlist.cache";
public static String MMFF_EDGEMAP_CACHE = "mmff.edgemap.cache";
public static String MMFF_AROM = "mmff.arom";
private static final String MMFF_ADJLIST_CACHE = "mmff.adjlist.cache";
private static final String MMFF_EDGEMAP_CACHE = "mmff.edgemap.cache";
private static final String MMFF_AROM = "mmff.arom";

private final MmffAtomTypeMatcher mmffAtomTyper = new MmffAtomTypeMatcher();
private final MmffParamSet mmffParamSet = MmffParamSet.INSTANCE;
Expand Down

0 comments on commit f1c0e70

Please sign in to comment.