Repository: commons-text Updated Branches: refs/heads/master 6f6b6365f -> 8330a733e
Remove trailing white spaces on all lines Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/8330a733 Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/8330a733 Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/8330a733 Branch: refs/heads/master Commit: 8330a733ee707bf561ad74628cde98a8fe55856c Parents: 6f6b636 Author: Gary Gregory <garydgreg...@gmail.com> Authored: Fri Sep 22 15:47:15 2017 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Fri Sep 22 15:47:15 2017 -0600 ---------------------------------------------------------------------- src/main/java/org/apache/commons/text/StrLookup.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-text/blob/8330a733/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 95e3a0e..563bec3 100644 --- a/src/main/java/org/apache/commons/text/StrLookup.java +++ b/src/main/java/org/apache/commons/text/StrLookup.java @@ -116,13 +116,13 @@ public abstract class StrLookup<V> { * <p> * The {@link #lookup(String)} method always returns a String, regardless of the underlying data, by converting it * as necessary. For example: - * + * * <pre> * Map<String, Object> map = new HashMap<String, Object>(); * map.put("number", Integer.valueOf(2)); * assertEquals("2", StrLookup.mapLookup(map).lookup("number")); * </pre> - * + * * @param key the key to be looked up, may be null * @return the matching value, null if no match */ @@ -191,12 +191,12 @@ public abstract class StrLookup<V> { } return resourceBundle.getString(key); } - + @Override public String toString() { return super.toString() + " [resourceBundle=" + resourceBundle + "]"; } - + } // -----------------------------------------------------------------------