summaryrefslogtreecommitdiffstats
path: root/vespalog/src/main/java/com/yahoo/log/event/Histogram.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespalog/src/main/java/com/yahoo/log/event/Histogram.java')
-rwxr-xr-xvespalog/src/main/java/com/yahoo/log/event/Histogram.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/vespalog/src/main/java/com/yahoo/log/event/Histogram.java b/vespalog/src/main/java/com/yahoo/log/event/Histogram.java
deleted file mode 100755
index 08875063a4e..00000000000
--- a/vespalog/src/main/java/com/yahoo/log/event/Histogram.java
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.log.event;
-
-@Deprecated(forRemoval = true, since = "7")
-public class Histogram extends Event {
- public Histogram () {
- }
-
- public Histogram (String name, String value, String representation) {
- init(name, value, representation);
- }
-
- private void init (String name, String value, String representation) {
- setValue("name", name);
- setValue("counts", value);
- setValue("representation", representation);
- }
-}