From: tkogut Date: Thu, 17 Sep 2020 08:47:37 +0000 (+0200) Subject: [OOM-CPMv2] Fix sonar issue X-Git-Tag: 2.1.0~20^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F04%2F112804%2F1;p=oom%2Fplatform%2Fcert-service.git [OOM-CPMv2] Fix sonar issue Remove unnecessary 'public' modifiers Issue-ID: OOM-2526 Signed-off-by: tkogut Change-Id: I94a67899ea1e1c4e207234206b94273b4dbf27b6 --- diff --git a/certServiceClient/src/test/java/org/onap/oom/certservice/client/configuration/EnvsForCsrTest.java b/certServiceClient/src/test/java/org/onap/oom/certservice/client/configuration/EnvsForCsrTest.java index ade13f75..9212269c 100644 --- a/certServiceClient/src/test/java/org/onap/oom/certservice/client/configuration/EnvsForCsrTest.java +++ b/certServiceClient/src/test/java/org/onap/oom/certservice/client/configuration/EnvsForCsrTest.java @@ -99,7 +99,7 @@ class EnvsForCsrTest { } @Test - public void shouldReportThatSystemEnvOuVariableIsNotPresentWhenItWasNotDefined() { + void shouldReportThatSystemEnvOuVariableIsNotPresentWhenItWasNotDefined() { // when final Optional testEnv = envsForCsr.getOrganizationUnit(); @@ -191,7 +191,7 @@ class EnvsForCsrTest { } @Test - public void shouldReportThatSystemEnvSansVariableIsNotPresentWhenItWasNotDefined() { + void shouldReportThatSystemEnvSansVariableIsNotPresentWhenItWasNotDefined() { // when final Optional testEnv = envsForCsr.getSubjectAlternativesName();