summaryrefslogtreecommitdiffstats
path: root/infra
diff options
context:
space:
mode:
Diffstat (limited to 'infra')
-rw-r--r--infra/notification/impl/src/main/java/io/fd/honeycomb/notification/impl/TranslationUtil.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/infra/notification/impl/src/main/java/io/fd/honeycomb/notification/impl/TranslationUtil.java b/infra/notification/impl/src/main/java/io/fd/honeycomb/notification/impl/TranslationUtil.java
index 9ba43fa0e..c18020fb3 100644
--- a/infra/notification/impl/src/main/java/io/fd/honeycomb/notification/impl/TranslationUtil.java
+++ b/infra/notification/impl/src/main/java/io/fd/honeycomb/notification/impl/TranslationUtil.java
@@ -38,7 +38,9 @@ import org.opendaylight.yangtools.yang.data.codec.xml.XMLStreamNormalizedNodeStr
public final class TranslationUtil {
- public TranslationUtil() {}
+ private TranslationUtil() {
+ throw new UnsupportedOperationException("Utility class cannot be instantiated.");
+ }
private static final Logger LOG = LoggerFactory.getLogger(TranslationUtil.class);
private static final XMLOutputFactory XML_FACTORY;