Skip to content

Commit

Permalink
progress
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Sep 1, 2024
1 parent 5c7cee0 commit ddf76c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/typewriter/rdb/ConnectionPool.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import kiss.I;
import kiss.WiseSupplier;

public class ConnectionPool implements WiseSupplier<Connection> {
class ConnectionPool implements WiseSupplier<Connection> {

/** The cached connections for each url. */
private static final Map<String, Connection> SINGLETONS = new ConcurrentHashMap();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/typewriter/rdb/RDBConstraint.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* {@link Constraint} for mongdb.
*/
public abstract class RDBConstraint<V, Self> implements Constraint<V, Self> {
abstract class RDBConstraint<V, Self> implements Constraint<V, Self> {

/** The name of target property. */
protected final String propertyName;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/typewriter/rdb/RDBQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
/**
* {@link Queryable} for RDB.
*/
public class RDBQuery<M extends Identifiable> implements Queryable<M, RDBQuery<M>> {
class RDBQuery<M extends Identifiable> implements Queryable<M, RDBQuery<M>> {

/** The all constraint set. */
protected final List<RDBConstraint<?, ?>> constraints = new ArrayList();
Expand Down

0 comments on commit ddf76c0

Please sign in to comment.