You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2017/09/22 21:49:29 UTC

[text] Add missing Javadoc.

Repository: commons-text
Updated Branches:
  refs/heads/master 8330a733e -> 5a0231ae0


Add missing Javadoc.

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

Branch: refs/heads/master
Commit: 5a0231ae0b9109bf5b2c9fca63e988e37f059f61
Parents: 8330a73
Author: Gary Gregory <ga...@gmail.com>
Authored: Fri Sep 22 15:49:27 2017 -0600
Committer: Gary Gregory <ga...@gmail.com>
Committed: Fri Sep 22 15:49:27 2017 -0600

----------------------------------------------------------------------
 src/main/java/org/apache/commons/text/StrLookup.java | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/5a0231ae/src/main/java/org/apache/commons/text/StrLookup.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/StrLookup.java b/src/main/java/org/apache/commons/text/StrLookup.java
index 563bec3..929530d 100644
--- a/src/main/java/org/apache/commons/text/StrLookup.java
+++ b/src/main/java/org/apache/commons/text/StrLookup.java
@@ -180,6 +180,11 @@ public abstract class StrLookup<V> {
 
         private final ResourceBundle resourceBundle;
 
+        /**
+         * Creates a new instance backed by a ResourceBundle.
+         *
+         * @param resourceBundle the ResourceBundle of keys to values, may be null
+         */
         public ResourceBundleLookup(final ResourceBundle resourceBundle) {
             this.resourceBundle = resourceBundle;
         }