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:54:23 UTC

logging-log4j2 git commit: Javadoc typos.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 71cec25ee -> 7106800fa


Javadoc typos.

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

Branch: refs/heads/master
Commit: 7106800fa2c00de9196a1acda6b14baf04e9e882
Parents: 71cec25
Author: Gary Gregory <gg...@apache.org>
Authored: Thu Nov 3 21:54:20 2016 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Thu Nov 3 21:54:20 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/7106800f/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 d9e3594..1aaa228 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
@@ -120,7 +120,7 @@ public class ResolverUtil {
     }
 
     /**
-     * Returns the classloader that will be used for scanning for classes. If no explicit ClassLoader has been set by
+     * Returns the ClassLoader that will be used for scanning for classes. If no explicit ClassLoader has been set by
      * the calling, the context class loader will be used.
      *
      * @return the ClassLoader that will be used to scan for classes
@@ -131,7 +131,7 @@ public class ResolverUtil {
 
     /**
      * Sets an explicit ClassLoader that should be used when scanning for classes. If none is set then the context
-     * classloader will be used.
+     * ClassLoader will be used.
      *
      * @param aClassloader
      *        a ClassLoader to use when scanning for classes
@@ -218,7 +218,7 @@ public class ResolverUtil {
                     }
                 }
             } catch (final IOException | URISyntaxException ioe) {
-                LOGGER.warn("could not read entries", ioe);
+                LOGGER.warn("Could not read entries", ioe);
             }
         }
     }
@@ -266,7 +266,7 @@ public class ResolverUtil {
     }
 
     /**
-     * Finds matches in a physical directory on a filesystem. Examines all files within a directory - if the File object
+     * Finds matches in a physical directory on a file system. Examines all files within a directory - if the File object
      * is not a directory, and ends with <i>.class</i> the file is loaded and tested to see if it is acceptable
      * according to the Test. Operates recursively to find classes within a folder structure matching the package
      * structure.