Skip to content

Commit 2163a89

Browse files
authored
fix: typo (#1353)
1 parent 0d57629 commit 2163a89

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/EventSourceManager.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
package io.javaoperatorsdk.operator.processing.event;
22

3-
import java.util.*;
3+
import java.util.LinkedHashSet;
4+
import java.util.List;
5+
import java.util.Objects;
6+
import java.util.Set;
47
import java.util.stream.Collectors;
58

69
import org.slf4j.Logger;
@@ -64,9 +67,6 @@ public synchronized void start() {
6467
eventProcessor.start();
6568
}
6669

67-
@SuppressWarnings("rawtypes")
68-
69-
7070
@Override
7171
public synchronized void stop() {
7272
stopEventSource(eventSources.namedControllerResourceEventSource());
@@ -127,7 +127,7 @@ public final synchronized void registerEventSource(String name, EventSource even
127127
throw e; // leave untouched
128128
} catch (Exception e) {
129129
throw new OperatorException("Couldn't register event source: " + name + " for "
130-
+ controller.getConfiguration().getName() + " controller`", e);
130+
+ controller.getConfiguration().getName() + " controller", e);
131131
}
132132
}
133133

0 commit comments

Comments
 (0)