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/09/20 22:57:15 UTC

logging-log4j2 git commit: Javadoc @throws StoreConfigurationException May be thrown by subclasses.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 995e3c3bc -> 50b7956b1


Javadoc @throws StoreConfigurationException May be thrown by subclasses.

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

Branch: refs/heads/master
Commit: 50b7956b18e3c57ac4d4142e64d84a38ac8b2d44
Parents: 995e3c3
Author: Gary Gregory <gg...@apache.org>
Authored: Tue Sep 20 15:57:11 2016 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Tue Sep 20 15:57:11 2016 -0700

----------------------------------------------------------------------
 .../org/apache/logging/log4j/core/net/ssl/StoreConfiguration.java | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/50b7956b/log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/StoreConfiguration.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/StoreConfiguration.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/StoreConfiguration.java
index fd51e40..f342fd5 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/StoreConfiguration.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/StoreConfiguration.java
@@ -52,6 +52,9 @@ public class StoreConfiguration<T> {
         this.password = password;
     }
 
+    /**
+     * @throws StoreConfigurationException May be thrown by subclasses 
+     */
     protected T load() throws StoreConfigurationException {
         return null;
     }