Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
arons committed Jun 15, 2024
1 parent b23ef6a commit 18f29a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/ch/arons/jbench/pg/data/DataClean.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import ch.arons.jbench.pg.DB;

/**
* Clen data created.
* Clean data created.
*/
public class DataClean {
private DB db;
Expand Down
2 changes: 1 addition & 1 deletion src/main/ch/arons/jbench/pg/test/TrivialQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public TrivialQuery(DB db) {
protected void test(Connection c) throws SQLException {


try (PreparedStatement ps = c.prepareStatement("select 1 ");) {
try (PreparedStatement ps = c.prepareStatement(" select 1 ");) {
ResultSet rs = null;

long totStart = System.currentTimeMillis();
Expand Down

0 comments on commit 18f29a1

Please sign in to comment.