diff --git a/pom.xml b/pom.xml index 09d094a..7220c4e 100644 --- a/pom.xml +++ b/pom.xml @@ -76,7 +76,7 @@ com.samskivert samskivert - 1.8.2 + 1.9 test @@ -130,6 +130,7 @@ true public + -Xdoclint:all -Xdoclint:-missing com.samskivert.depot.impl http://docs.guava-libraries.googlecode.com/git/javadoc/ diff --git a/src/main/java/com/samskivert/depot/DataSourceConnectionProvider.java b/src/main/java/com/samskivert/depot/DataSourceConnectionProvider.java index bf469ef..ec3eb13 100644 --- a/src/main/java/com/samskivert/depot/DataSourceConnectionProvider.java +++ b/src/main/java/com/samskivert/depot/DataSourceConnectionProvider.java @@ -24,9 +24,9 @@ public class DataSourceConnectionProvider implements ConnectionProvider * Responsibility for the lifecycle of the supplied datasources is left to the caller and is * not managed by the connection provider ({@link #shutdown} does nothing). * - * @param url a URL prefix that can be used by the {@link DatabaseLiaison} to identify the type - * of database being accessed by the supplied data sources, this should be one of "jdbc:mysql" - * or "jdbc:postgresql" as those are the only two types of database currently supported. + * @param url a URL prefix that can be used to identify the type of database being accessed by + * the supplied data sources, this should be one of "jdbc:mysql" or "jdbc:postgresql" as those + * are the only two types of database currently supported. */ public DataSourceConnectionProvider (String url, DataSource readSource, DataSource writeSource) {