From 62d7cf6771b0491fc469e24cf7c3e2fe3ded5056 Mon Sep 17 00:00:00 2001 From: hneemann Date: Sun, 10 Apr 2016 11:17:59 +0200 Subject: [PATCH] disabled some checkstyle warnings --- src/main/java/de/neemann/digital/core/element/AttributeKey.java | 2 ++ 1 file changed, 2 insertions(+) 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 11710e0eb..dc1dd9df8 100644 --- a/src/main/java/de/neemann/digital/core/element/AttributeKey.java +++ b/src/main/java/de/neemann/digital/core/element/AttributeKey.java @@ -11,6 +11,7 @@ import de.neemann.digital.lang.Lang; */ public class AttributeKey { + //CHECKSTYLE:OFF: checkstyle:naming 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"), ""); @@ -37,6 +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:naming private final String key; private final VALUE def;