diff options
author | 2019-12-11 14:47:53 +0000 | |
---|---|---|
committer | 2019-12-11 14:47:53 +0000 | |
commit | f32f276bb5dddfc4d11be9f0c13227547a0110b1 (patch) | |
tree | 2cd7834e044b443d28d702d12eda7ce7ad069714 /models-errors | |
parent | 360cffc3b859716273251f077a469939fc80e100 (diff) | |
parent | 5a366fdab88b7205cedd2ba687109b80dc374544 (diff) |
Merge "Fix minor checksyle issues in models"
Diffstat (limited to 'models-errors')
-rw-r--r-- | models-errors/src/main/java/org/onap/policy/models/errors/concepts/ErrorResponseUtils.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/models-errors/src/main/java/org/onap/policy/models/errors/concepts/ErrorResponseUtils.java b/models-errors/src/main/java/org/onap/policy/models/errors/concepts/ErrorResponseUtils.java index 5052d36fd..67815a811 100644 --- a/models-errors/src/main/java/org/onap/policy/models/errors/concepts/ErrorResponseUtils.java +++ b/models-errors/src/main/java/org/onap/policy/models/errors/concepts/ErrorResponseUtils.java @@ -32,7 +32,9 @@ public final class ErrorResponseUtils { /** * Private constructor used to prevent sub class instantiation. */ - private ErrorResponseUtils() {} + private ErrorResponseUtils() { + // Default constructor + } /** * Store the cascaded messages from an exception and all its nested exceptions in an ErrorResponse object. @@ -53,4 +55,3 @@ public final class ErrorResponseUtils { } } } - |