Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E93E0200CE1 for ; Fri, 7 Jul 2017 04:05:39 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E79A1167E30; Fri, 7 Jul 2017 02:05:39 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3F726167E37 for ; Fri, 7 Jul 2017 04:05:39 +0200 (CEST) Received: (qmail 72459 invoked by uid 500); 7 Jul 2017 02:05:37 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 72009 invoked by uid 99); 7 Jul 2017 02:05:37 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jul 2017 02:05:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E288DF5508; Fri, 7 Jul 2017 02:05:36 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: thecarlhall@apache.org To: commits@commons.apache.org Date: Fri, 07 Jul 2017 02:05:46 -0000 Message-Id: <1b4c019b44e0484a96e0171e6704d96d@git.apache.org> In-Reply-To: <61130dcfb8c9434aba8ddd07d7d7485c@git.apache.org> References: <61130dcfb8c9434aba8ddd07d7d7485c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [11/50] commons-dbutils git commit: Use qualified class names instead of importing class just for documentation archived-at: Fri, 07 Jul 2017 02:05:40 -0000 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 Authored: Wed Jul 16 18:05:42 2014 +0000 Committer: Benedikt Ritter 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