From b95c61227886063e22c5d679bb907aaf7da48fd3 Mon Sep 17 00:00:00 2001 From: tkogut Date: Thu, 17 Sep 2020 10:47:37 +0200 Subject: [OOM-CPMv2] Fix sonar issue Remove unnecessary 'public' modifiers Issue-ID: OOM-2526 Signed-off-by: tkogut Change-Id: I94a67899ea1e1c4e207234206b94273b4dbf27b6 --- .../org/onap/oom/certservice/client/configuration/EnvsForCsrTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); -- cgit 1.2.3-korg