From be5e4d010eaf47a26f33b0c6cd111a2d0cca7d9a Mon Sep 17 00:00:00 2001 From: Yeray Borges Date: Mon, 15 Jan 2024 12:37:23 +0000 Subject: [PATCH] [WFCORE-6645] Reduce visibility of DomainTestSuite start stop methods to package level --- .../as/test/integration/domain/suites/DomainTestSuite.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/domain/src/test/java/org/jboss/as/test/integration/domain/suites/DomainTestSuite.java b/testsuite/domain/src/test/java/org/jboss/as/test/integration/domain/suites/DomainTestSuite.java index e1670f2da44..eb7b842be6a 100644 --- a/testsuite/domain/src/test/java/org/jboss/as/test/integration/domain/suites/DomainTestSuite.java +++ b/testsuite/domain/src/test/java/org/jboss/as/test/integration/domain/suites/DomainTestSuite.java @@ -65,7 +65,7 @@ public class DomainTestSuite { private static volatile DomainTestSupport support; // This can only be called from tests as part of this suite - public static synchronized DomainTestSupport createSupport(final String testName) { + static synchronized DomainTestSupport createSupport(final String testName) { if(support == null) { start(testName); } @@ -73,7 +73,7 @@ public static synchronized DomainTestSupport createSupport(final String testName } // This can only be called from tests as part of this suite - public static synchronized void stopSupport() { + static synchronized void stopSupport() { if(! initializedLocally) { stop(); }