summaryrefslogtreecommitdiffstats
path: root/logserver/src/main/java/com/yahoo/logserver/formatter/NullFormatter.java
diff options
context:
space:
mode:
Diffstat (limited to 'logserver/src/main/java/com/yahoo/logserver/formatter/NullFormatter.java')
-rw-r--r--logserver/src/main/java/com/yahoo/logserver/formatter/NullFormatter.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/logserver/src/main/java/com/yahoo/logserver/formatter/NullFormatter.java b/logserver/src/main/java/com/yahoo/logserver/formatter/NullFormatter.java
deleted file mode 100644
index c419ce21272..00000000000
--- a/logserver/src/main/java/com/yahoo/logserver/formatter/NullFormatter.java
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-/*
- * $Id$
- *
- */
-
-package com.yahoo.logserver.formatter;
-
-import com.yahoo.log.LogMessage;
-
-/**
- * This formatter doesn't really format anything. It just
- * calls the LogMessage toString() method. This is kind of
- * pointless and silly, but we include it for symmetry...
- * or completeness....or...whatever.
- *
- * @author Bjorn Borud
- */
-public class NullFormatter implements LogFormatter {
-
- public String format(LogMessage msg) {
- return msg.toString();
- }
-
- public String description() {
- return "Format message in native VESPA format";
- }
-
-}