Skip to content

Commit 4982d43

Browse files
committed
sonar minor issues fix
1 parent 52b232c commit 4982d43

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ExecutorServiceManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private void doStop(Duration gracefulShutdownTimeout) {
109109
}
110110

111111
private static Callable<Void> shutdown(ExecutorService executorService,
112-
Duration gracefulShutdownTimeout) throws InterruptedException {
112+
Duration gracefulShutdownTimeout) {
113113
return () -> {
114114
executorService.shutdown();
115115
if (!executorService.awaitTermination(gracefulShutdownTimeout.toMillis(),

operator-framework-core/src/test/java/io/javaoperatorsdk/operator/api/config/VersionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import static org.junit.Assert.assertEquals;
66

7-
public class VersionTest {
7+
class VersionTest {
88

99
@Test
1010
void versionShouldReturnTheSameResultFromMavenAndProperties() {

0 commit comments

Comments
 (0)