Skip to content

Commit

Permalink
Remove duplications (#15)
Browse files Browse the repository at this point in the history
* removed duplications

* removed the last code-smell
  • Loading branch information
Schubi1981 authored Jan 5, 2020
1 parent 6c42da0 commit ce6fa71
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ A Java-Library to build SQL-Statements
<dependency>
<groupId>de.jaggl.sqlbuilder</groupId>
<artifactId>sqlbuilder-core</artifactId>
<version>2.4.1</version>
<version>2.4.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>de.jaggl.sqlbuilder</groupId>
<artifactId>sqlbuilder-core</artifactId>
<version>2.4.1</version>
<version>2.4.2</version>

<packaging>jar</packaging>

Expand Down
2 changes: 2 additions & 0 deletions src/test/java/de/jaggl/sqlbuilder/queries/QueryTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ public void testPrintAndPrintln()
{
var query = select().from(create("table"));

assertThat(query).isNotNull();

query.print();
System.out.println();
query.println();
Expand Down

0 comments on commit ce6fa71

Please sign in to comment.