Skip to content

Commit

Permalink
Fix checkstyle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pingpingy1 committed Mar 15, 2024
1 parent cd1644a commit e069595
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<argLine />
<argLine/>
<spotless.skip>false</spotless.skip>
</properties>
<dependencyManagement>
Expand Down Expand Up @@ -202,7 +202,7 @@
<importOrder>
<order>org.apache.tsfile,,javax,java,\#</order>
</importOrder>
<removeUnusedImports />
<removeUnusedImports/>
</java>
<lineEndings>UNIX</lineEndings>
</configuration>
Expand Down Expand Up @@ -301,7 +301,7 @@
<phase>validate</phase>
<configuration>
<rules>
<dependencyConvergence />
<dependencyConvergence/>
</rules>
</configuration>
</execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@
public class TsFileExecutorTest {
@Test
public void constructorNullTest() {
Assert.assertThrows(NullPointerException.class, () -> {
new TsFileExecutor(null, null);
});
Assert.assertThrows(
NullPointerException.class,
() -> {
new TsFileExecutor(null, null);
});
}
}

0 comments on commit e069595

Please sign in to comment.