Skip to content

Commit

Permalink
[WFCORE-6645] Reduce visibility of DomainTestSuite start stop methods…
Browse files Browse the repository at this point in the history
… to package level
  • Loading branch information
yersan committed Jan 19, 2024
1 parent 8988a36 commit be5e4d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ 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);
}
return support;
}

// This can only be called from tests as part of this suite
public static synchronized void stopSupport() {
static synchronized void stopSupport() {
if(! initializedLocally) {
stop();
}
Expand Down

0 comments on commit be5e4d0

Please sign in to comment.