Skip to content

Commit 5e44e94

Browse files
committed
Removed unused throws
1 parent 4090fd0 commit 5e44e94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/core-persistence/core-persistence-file/src/test/java/ai/wanaku/core/persistence/file/ServiceRegistryTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public void saveState() throws IOException {
9393

9494
@Test
9595
@Order(5)
96-
public void getState() throws IOException {
96+
public void getState() {
9797
List<State> states = serviceRegistry.getState(TEST_SERVICE_NAME, 10);
9898

9999
Assertions.assertEquals(1, states.size());
@@ -128,7 +128,7 @@ public void deregister() {
128128

129129
@Test
130130
@Order(100)
131-
public void testConcurrentRegistrations() throws IOException, InterruptedException {
131+
public void testConcurrentRegistrations() throws InterruptedException {
132132
List<Callable<Void>> callables = new ArrayList<>();
133133
for (int i = 0; i < 100; i++) {
134134
int finalI = i;

0 commit comments

Comments
 (0)