You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by th...@apache.org on 2017/07/07 02:05:46 UTC

[11/50] commons-dbutils git commit: Use qualified class names instead of importing class just for documentation

Use qualified class names instead of importing class just for documentation

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/dbutils/trunk@1611119 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/commons-dbutils/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbutils/commit/b76da882
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbutils/tree/b76da882
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbutils/diff/b76da882

Branch: refs/heads/master
Commit: b76da882a3bc005927eba330ab93e64f280e04ba
Parents: 356a20f
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Jul 16 18:05:42 2014 +0000
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Jul 16 18:05:42 2014 +0000

----------------------------------------------------------------------
 src/main/java/org/apache/commons/dbutils/QueryLoader.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/b76da882/src/main/java/org/apache/commons/dbutils/QueryLoader.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/dbutils/QueryLoader.java b/src/main/java/org/apache/commons/dbutils/QueryLoader.java
index b408a3d..ac43251 100644
--- a/src/main/java/org/apache/commons/dbutils/QueryLoader.java
+++ b/src/main/java/org/apache/commons/dbutils/QueryLoader.java
@@ -19,7 +19,6 @@ package org.apache.commons.dbutils;
 import java.io.IOException;
 import java.io.InputStream;
 import java.util.HashMap;
-import java.util.InvalidPropertiesFormatException;
 import java.util.Map;
 import java.util.Properties;
 import java.util.regex.Pattern;
@@ -76,7 +75,7 @@ public class QueryLoader {
      * @throws IOException if a file access error occurs
      * @throws IllegalArgumentException if the ClassLoader can't find a file at
      * the given path.
-     * @throws InvalidPropertiesFormatException if the XML properties file is
+     * @throws java.util.InvalidPropertiesFormatException if the XML properties file is
      * invalid
      * @return Map of query names to SQL values
      * @see java.util.Properties
@@ -103,7 +102,7 @@ public class QueryLoader {
      * @throws IOException if a file access error occurs
      * @throws IllegalArgumentException if the ClassLoader can't find a file at
      * the given path.
-     * @throws InvalidPropertiesFormatException if the XML properties file is
+     * @throws java.util.InvalidPropertiesFormatException if the XML properties file is
      * invalid
      * @since DbUtils 1.1
      * @return Map of query names to SQL values