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:55 UTC

[20/50] commons-dbutils git commit: Use the more modern, compact, and flexible Javadoc "{@code ...}" instead of the HTML "...".

Use the more modern, compact, and flexible Javadoc "{@code ...}" instead of the HTML "<tt>...</tt>".

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/dbutils/trunk@1612030 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/cd3f19bb
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbutils/tree/cd3f19bb
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbutils/diff/cd3f19bb

Branch: refs/heads/master
Commit: cd3f19bb74be63493941d148727bd64a504f0946
Parents: 8c1bc74
Author: Gary D. Gregory <gg...@apache.org>
Authored: Sun Jul 20 06:27:04 2014 +0000
Committer: Gary D. Gregory <gg...@apache.org>
Committed: Sun Jul 20 06:27:04 2014 +0000

----------------------------------------------------------------------
 src/main/java/org/apache/commons/dbutils/BasicRowProcessor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/cd3f19bb/src/main/java/org/apache/commons/dbutils/BasicRowProcessor.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/dbutils/BasicRowProcessor.java b/src/main/java/org/apache/commons/dbutils/BasicRowProcessor.java
index 7508140..cd6ec96 100644
--- a/src/main/java/org/apache/commons/dbutils/BasicRowProcessor.java
+++ b/src/main/java/org/apache/commons/dbutils/BasicRowProcessor.java
@@ -181,7 +181,7 @@ public class BasicRowProcessor implements RowProcessor {
      * an internal mapping from lowercase keys to the real keys in order to
      * achieve the case insensitive lookup.
      *
-     * <p>Note: This implementation does not allow <tt>null</tt>
+     * <p>Note: This implementation does not allow {@code null}
      * for key, whereas {@link LinkedHashMap} does, because of the code:
      * <pre>
      * key.toString().toLowerCase()