diff options
author | Jim Hahn <jrh3@att.com> | 2019-02-18 17:03:29 -0500 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-02-18 17:04:55 -0500 |
commit | c570eb69f64484ab353b2b60d810ef6f1753bf5a (patch) | |
tree | 95aed61a03f8997469b3e1fd1c522bee6836638e /feature-pooling-dmaap/src/main | |
parent | 4b9341b810a8d676373677e86da736bf9144308c (diff) |
Remove unneeded "throws"
Fixed sonar issue:
- remove the declaration of thrown exception
'com.google.gson.JsonParseException' which is a runtime exception
Change-Id: Ice29a875891a06a55932fcf80107d4dec2b10d1f
Issue-ID: POLICY-1533
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'feature-pooling-dmaap/src/main')
-rw-r--r-- | feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/Serializer.java | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/Serializer.java b/feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/Serializer.java index eee26ef3..80eee501 100644 --- a/feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/Serializer.java +++ b/feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/Serializer.java @@ -82,9 +82,8 @@ public class Serializer { * * @param filter filter to be encoded * @return the filter, serialized as a JSON string - * @throws JsonParseException if it cannot be de-serialized */ - public String encodeFilter(Map<String, Object> filter) throws JsonParseException { + public String encodeFilter(Map<String, Object> filter) { return gson.toJson(filter); } @@ -93,9 +92,8 @@ public class Serializer { * * @param msg message to be encoded * @return the message, serialized as a JSON string - * @throws JsonParseException if it cannot be de-serialized */ - public String encodeMsg(Message msg) throws JsonParseException { + public String encodeMsg(Message msg) { JsonElement jsonEl = gson.toJsonTree(msg); String type = class2type.get(msg.getClass()); @@ -113,9 +111,8 @@ public class Serializer { * * @param msg JSON string representing the message * @return the message - * @throws JsonParseException if it cannot be serialized */ - public Message decodeMsg(String msg) throws JsonParseException { + public Message decodeMsg(String msg) { JsonElement jsonEl = gson.fromJson(msg, JsonElement.class); JsonElement typeEl = jsonEl.getAsJsonObject().get(TYPE_FIELD); |