You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2016/11/04 04:58:35 UTC

logging-log4j2 git commit: Match Javadoc to the source.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 7106800fa -> 7090c2f78


Match Javadoc to the source.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/7090c2f7
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/7090c2f7
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/7090c2f7

Branch: refs/heads/master
Commit: 7090c2f78350bd29048941919c89763460147482
Parents: 7106800
Author: Gary Gregory <gg...@apache.org>
Authored: Thu Nov 3 21:58:32 2016 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Thu Nov 3 21:58:32 2016 -0700

----------------------------------------------------------------------
 .../logging/log4j/core/config/plugins/util/ResolverUtil.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/7090c2f7/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/util/ResolverUtil.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/util/ResolverUtil.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/util/ResolverUtil.java
index 1aaa228..6d9178c 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/util/ResolverUtil.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/util/ResolverUtil.java
@@ -67,11 +67,11 @@ import org.osgi.framework.wiring.BundleWiring;
  * </p>
  *
  * <pre>
- * ResolverUtil&lt;ActionBean&gt; resolver = new ResolverUtil&lt;ActionBean&gt;();
- * resolver.findImplementation(ActionBean.class, pkg1, pkg2);
+ * ResolverUtil resolver = new ResolverUtil();
+ * resolver.findInPackage(new CustomTest(), pkg1);
  * resolver.find(new CustomTest(), pkg1);
- * resolver.find(new CustomTest(), pkg2);
- * Collection&lt;ActionBean&gt; beans = resolver.getClasses();
+ * resolver.find(new CustomTest(), pkg1, pkg2);
+ * Set&lt;Class&lt;?&gt;&gt; beans = resolver.getClasses();
  * </pre>
  *
  * <p>