From: Tuukka Lehtonen Date: Tue, 20 Mar 2018 08:04:38 +0000 (+0200) Subject: Removed apparent debugging code from org.simantics.utils.Development X-Git-Tag: v1.43.0~136^2~536 X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=commitdiff_plain;h=14782a8b99b1c6e7523b85e71b165439ffc47257;hp=1ead2fab0a23f75b540dc3f20e84e536f3aaa3ca Removed apparent debugging code from org.simantics.utils.Development refs #7719 Change-Id: If5e3366a390f7c2cae581d7d0994f85a404a326d --- diff --git a/bundles/org.simantics.utils/src/org/simantics/utils/Development.java b/bundles/org.simantics.utils/src/org/simantics/utils/Development.java index 84c13b4d8..96c3453c7 100644 --- a/bundles/org.simantics.utils/src/org/simantics/utils/Development.java +++ b/bundles/org.simantics.utils/src/org/simantics/utils/Development.java @@ -16,7 +16,7 @@ import org.slf4j.LoggerFactory; public class Development { private static final Logger LOGGER = LoggerFactory.getLogger(Development.class); - public static TreeMap histogram = new TreeMap(); + public static TreeMap histogram = new TreeMap<>(); public static final boolean DEVELOPMENT = false; @@ -28,9 +28,9 @@ public class Development { } - final static private HashMap properties = new HashMap(); + final static private HashMap properties = new HashMap<>(); - final static private CopyOnWriteArrayList listeners = new CopyOnWriteArrayList(); + final static private CopyOnWriteArrayList listeners = new CopyOnWriteArrayList<>(); static { @@ -96,13 +96,8 @@ public class Development { public static void recordHistogram(Object o) { String key = o.toString(); - Integer i = Development.histogram.get(key); - if(i == null) i = 0; - int newValue = i+1; - if (newValue == 1000) { - newValue = newValue; - } - Development.histogram.put(key, newValue); + Integer i = histogram.get(key); + histogram.put(key, i == null ? 1 : i+1); } }