Skip to content

Commit

Permalink
formatting correcties
Browse files Browse the repository at this point in the history
  • Loading branch information
mprins committed Oct 16, 2023
1 parent 779a214 commit c3f24e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

exports nl.b3p.jdbc.util.converter;
exports nl.b3p.jdbc.util.dbutils;

// for integration tests
opens nl.b3p.jdbc.util.converter;
// opens nl.b3p.jdbc.util.dbutils;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,23 @@
public abstract class AbstractDatabaseIntegrationTest {

private static final Log LOG = LogFactory.getLog(AbstractDatabaseIntegrationTest.class);

/**
* properties uit {@code <DB smaak>.properties} en {@code local.<DB smaak>.properties}.
*
* @see #loadProps()
*/
protected final Properties params = new Properties();

/** {@code true} als we met een Oracle database bezig zijn. */
protected boolean isOracle;

/** {@code true} als we met een MS SQL Server database bezig zijn. */
protected boolean isMsSQL;

/** {@code true} als we met een Postgis database bezig zijn. */
protected boolean isPostgis;

/** {@code true} als we met een HSQLDB database bezig zijn. */
protected boolean isHSQLDB;

Expand Down

0 comments on commit c3f24e5

Please sign in to comment.