From 571af77a0ce39bca07a5db5890a8c6ccf4f7e84b Mon Sep 17 00:00:00 2001 From: hneemann Date: Sun, 10 Apr 2016 11:36:47 +0200 Subject: [PATCH] disabled some checkstyle warnings --- .../java/de/neemann/digital/core/element/AttributeKey.java | 4 ++-- 1 file changed, 2 insertions(+), 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 6ee144b14..2d1bfbb28 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,7 @@ import de.neemann.digital.lang.Lang; */ public class AttributeKey { - //CHECKSTYLE:OFF + //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 +38,7 @@ 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 + //CHECKSTYLE.ON: ConstantName private final String key; private final VALUE def;