Repository: commons-text Updated Branches: refs/heads/master bd81c46e0 -> 0b061698f
[TEXT-102] StrLookup.resourceBundleLookup(ResourceBundle). Make new class private. Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/0b061698 Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/0b061698 Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/0b061698 Branch: refs/heads/master Commit: 0b061698f7b8dc0665804fadcfb6f9f37048efee Parents: bd81c46 Author: Gary Gregory <garydgreg...@gmail.com> Authored: Fri Sep 22 11:34:10 2017 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Fri Sep 22 11:34:10 2017 -0600 ---------------------------------------------------------------------- src/main/java/org/apache/commons/text/StrLookup.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-text/blob/0b061698/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 9e2ef80..726ef73 100644 --- a/src/main/java/org/apache/commons/text/StrLookup.java +++ b/src/main/java/org/apache/commons/text/StrLookup.java @@ -176,7 +176,7 @@ public abstract class StrLookup<V> { /** * Lookup implementation based on a ResourceBundle. */ - static class ResourceBundleLookup extends StrLookup<String> { + private static class ResourceBundleLookup extends StrLookup<String> { private final ResourceBundle resourceBundle;