Skip to content

Commit cb12895

Browse files
committed
Refactoring
1 parent e7124cc commit cb12895

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[*.{kt, kts, java, xml, html, js}]
1+
[*.{kt,kts,java,xml,html,js}]
22
max_line_length = 120
33
indent_size = 2
44
continuation_indent_size = 2

src/test/java/com/github/demidko/aot/WordformMeaningTest.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
package com.github.demidko.aot;
22

3+
import org.junit.jupiter.api.Test;
4+
5+
import java.util.List;
6+
37
import static com.github.demidko.aot.WordformMeaning.lookupForMeanings;
48
import static java.util.stream.Collectors.toList;
59
import static org.hamcrest.MatcherAssert.assertThat;
610
import static org.hamcrest.Matchers.equalTo;
711
import static org.hamcrest.Matchers.hasItems;
812

9-
import java.io.IOException;
10-
import java.util.List;
11-
import org.junit.jupiter.api.Test;
12-
1313
class WordformMeaningTest {
1414

1515
@Test
16-
void lookupForMeaningsTest() throws IOException {
16+
void lookupForMeaningsTest() {
1717
List<WordformMeaning> meanings = lookupForMeanings("замок");
1818

1919
/*

0 commit comments

Comments
 (0)