Skip to content

Commit

Permalink
Refactored code
Browse files Browse the repository at this point in the history
  • Loading branch information
fulminazzo committed Apr 12, 2024
1 parent c339a56 commit df6b41b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ allprojects {
}

if (!projectName.contains("-"))
subprojects.findAll { !it.name.equals(TEST_MODULE) } .each {api project(it.path)}
subprojects.findAll { (it.name != TEST_MODULE) } .each {api project(it.path)}

testCompileOnly libs.lombok
testAnnotationProcessor libs.lombok
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

import java.util.function.Consumer;

import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import org.mockito.MockedStatic;

import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.Collections;

import static org.junit.jupiter.api.Assertions.*;
Expand Down

0 comments on commit df6b41b

Please sign in to comment.