Skip to content

Commit 45b3446

Browse files
fix: checkstyle [macata #99]
1 parent 5178677 commit 45b3446

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

checkstyle.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,4 +219,10 @@
219219
</module>
220220
<module name="UnusedImports"/>
221221
</module>
222+
223+
<module name="RegexpMultiline">
224+
<property name="format" value="(\n\s*){3,}"/>
225+
<property name="message" value="Too many consecutive blank lines."/>
226+
<property name="severity" value="error"/>
227+
</module>
222228
</module>

src/main/java/com/dazednconfused/catalauncher/database/h2/H2Database.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ protected static Result<Throwable, Connection> openConnection(String database) {
104104
).map(Result::success).recover(Result::failure).get();
105105
}
106106

107-
108107
/**
109108
* Completely wipes this database of any and all data, <b>including</b> the underlying schema.
110109
*

0 commit comments

Comments
 (0)