Skip to content

Commit f3cc9bd

Browse files
committed
Fix linting issues
1 parent b35ae54 commit f3cc9bd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/main/java/ch/jalu/configme/configurationdata/CommentsConfiguration.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@
1616
*/
1717
public class CommentsConfiguration {
1818

19-
private final @NotNull Map<String, List<String>> comments;
20-
19+
/** Fake path under which footer comments are registered. */
2120
public static final String FOOTER_KEY = "..FOOTER";
2221

22+
private final @NotNull Map<String, List<String>> comments;
23+
2324
/**
2425
* Constructor.
2526
*/

src/test/java/ch/jalu/configme/resource/YamlFileResourceFooterCommentTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import java.io.IOException;
1515
import java.nio.file.Files;
1616
import java.nio.file.Path;
17-
import java.util.*;
17+
import java.util.List;
1818

1919
import static org.hamcrest.MatcherAssert.assertThat;
2020
import static org.hamcrest.Matchers.contains;

0 commit comments

Comments
 (0)