aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-12-17 22:52:28 +0000
committerGerrit Code Review <gerrit@onap.org>2018-12-17 22:52:28 +0000
commitbd4146f039fcf0377246bce0ef6ee93c24ea26dc (patch)
treec2dbdf23eab98b74dd3d800d5bd3c6a2380fad72
parent78977cb577e3b0c2d392da41c63f3955c5e3173a (diff)
parent5396e1b390bf7ebeccb5eba01ff563bf39e4fa62 (diff)
Merge "Sonar fix: SdncDmaapConsumerImpl.java"
-rw-r--r--dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumerImpl.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumerImpl.java b/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumerImpl.java
index ddd87132..ee8bb4d6 100644
--- a/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumerImpl.java
+++ b/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumerImpl.java
@@ -4,6 +4,7 @@
* ================================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights
* reserved.
+ * Modifications Copyright © 2018 IBM.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -155,5 +156,5 @@ public abstract class SdncDmaapConsumerImpl implements SdncDmaapConsumer {
}
}
- abstract public void processMsg(String msg) throws InvalidMessageException;
+ public abstract void processMsg(String msg) throws InvalidMessageException;
}