This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-dbutils.git
The following commit(s) were added to refs/heads/master by this push: new b0b17f4 Javadoc @since tag should be after @return and @throws b0b17f4 is described below commit b0b17f4aed0ed360924126469eac13a160ba06ea Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Mar 22 09:31:24 2025 -0400 Javadoc @since tag should be after @return and @throws --- src/main/java/org/apache/commons/dbutils/QueryLoader.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/dbutils/QueryLoader.java b/src/main/java/org/apache/commons/dbutils/QueryLoader.java index 9b813c8..6a2b326 100644 --- a/src/main/java/org/apache/commons/dbutils/QueryLoader.java +++ b/src/main/java/org/apache/commons/dbutils/QueryLoader.java @@ -96,16 +96,16 @@ public class QueryLoader { * reads a properties file at the given path. The properties file can be * in either line-oriented or XML format. XML formatted properties files * must use a {@code .xml} file extension. - + * * @param path The path that the ClassLoader will use to find the file. * @throws IOException if a file access error occurs * @throws IllegalArgumentException if the ClassLoader can't find a file at + * @return Map of query names to SQL values * the given path. * @throws java.util.InvalidPropertiesFormatException if the XML properties file is * invalid - * @since 1.1 - * @return Map of query names to SQL values * @see java.util.Properties + * @since 1.1 */ protected Map<String, String> loadQueries(final String path) throws IOException { // Findbugs flags getClass().getResource as a bad practice; maybe we should change the API?