From 2108c69365ceebdecc08cbc372be7077285e9cc7 Mon Sep 17 00:00:00 2001 From: hneemann Date: Sun, 10 Apr 2016 11:40:39 +0200 Subject: [PATCH] nothing seems to work --- src/main/java/de/neemann/digital/core/element/AttributeKey.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/de/neemann/digital/core/element/AttributeKey.java b/src/main/java/de/neemann/digital/core/element/AttributeKey.java index 2d1bfbb28..11710e0eb 100644 --- a/src/main/java/de/neemann/digital/core/element/AttributeKey.java +++ b/src/main/java/de/neemann/digital/core/element/AttributeKey.java @@ -11,7 +11,6 @@ import de.neemann.digital.lang.Lang; */ public class AttributeKey { - //CHECKSTYLE.OFF: ConstantName public static final AttributeKey Bits = new AttributeKey<>("Bits", Lang.get("key_dataBits"), 1); public static final AttributeKey InputCount = new AttributeKey<>("Inputs", Lang.get("key_numberInputs"), 2); public static final AttributeKey Label = new AttributeKey<>("Label", Lang.get("key_label"), ""); @@ -38,7 +37,6 @@ public class AttributeKey { public static final AttributeKey ShowDataGraph = new AttributeKey<>("showDataGraph", Lang.get("key_showDataGraph"), false); public static final AttributeKey StartTimer = new AttributeKey<>("startTimer", Lang.get("key_startClock"), false); public static final AttributeKey MicroStep = new AttributeKey<>("microStep", Lang.get("key_microStep"), false); - //CHECKSTYLE.ON: ConstantName private final String key; private final VALUE def;