Author: britter
Date: Wed Jul 16 18:05:42 2014
New Revision: 1611119
URL: http://svn.apache.org/r1611119
Log:
Use qualified class names instead of importing class just for documentation
Modified:
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/QueryLoader.java
Modified:
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/QueryLoader.java
URL:
http://svn.apache.org/viewvc/commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/QueryLoader.java?rev=1611119&r1=1611118&r2=1611119&view=diff
==============================================================================
---
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/QueryLoader.java
(original)
+++
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/QueryLoader.java
Wed Jul 16 18:05:42 2014
@@ -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