Update @since to 2.9.1 where relevant

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

Branch: refs/heads/LOG4J2-1431
Commit: 74ed4f67168c462c517d6bac14300abe77c9e469
Parents: a010a2a
Author: Matt Sicker <[email protected]>
Authored: Sat Aug 26 14:35:51 2017 -0500
Committer: Matt Sicker <[email protected]>
Committed: Sat Aug 26 15:50:56 2017 -0500

----------------------------------------------------------------------
 .../apache/logging/log4j/util/EnvironmentPropertySource.java   | 2 +-
 .../apache/logging/log4j/util/PropertiesPropertySource.java    | 2 +-
 .../java/org/apache/logging/log4j/util/PropertiesUtil.java     | 2 +-
 .../apache/logging/log4j/util/PropertyFilePropertySource.java  | 2 +-
 .../java/org/apache/logging/log4j/util/PropertySource.java     | 6 +++---
 .../logging/log4j/util/SystemPropertiesPropertySource.java     | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/74ed4f67/log4j-api/src/main/java/org/apache/logging/log4j/util/EnvironmentPropertySource.java
----------------------------------------------------------------------
diff --git 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/EnvironmentPropertySource.java
 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/EnvironmentPropertySource.java
index d413d61..03cdb7f 100644
--- 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/EnvironmentPropertySource.java
+++ 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/EnvironmentPropertySource.java
@@ -23,7 +23,7 @@ import java.util.Map;
  * with {@code LOG4J_} so as not to conflict with other variables. Normalized 
environment variables follow a scheme
  * like this: {@code log4j2.fooBarProperty} would normalize to {@code 
LOG4J_FOO_BAR_PROPERTY}.
  *
- * @since 2.9
+ * @since 2.9.1
  */
 public class EnvironmentPropertySource implements PropertySource {
     @Override

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/74ed4f67/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertiesPropertySource.java
----------------------------------------------------------------------
diff --git 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertiesPropertySource.java
 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertiesPropertySource.java
index 7622509..80777a6 100644
--- 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertiesPropertySource.java
+++ 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertiesPropertySource.java
@@ -23,7 +23,7 @@ import java.util.Properties;
  * PropertySource backed by a {@link Properties} instance. Normalized property 
names follow a scheme like this:
  * {@code Log4jContextSelector} would normalize to {@code 
log4j2.contextSelector}.
  *
- * @since 2.9
+ * @since 2.9.1
  */
 public class PropertiesPropertySource implements PropertySource {
 

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/74ed4f67/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertiesUtil.java
----------------------------------------------------------------------
diff --git 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertiesUtil.java 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertiesUtil.java
index d8679ac..5e87349 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertiesUtil.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertiesUtil.java
@@ -283,7 +283,7 @@ public final class PropertiesUtil {
      *
      * Tokenized: loose matching based on word boundaries.
      *
-     * @since 2.9
+     * @since 2.9.1
      */
     private static class Environment {
 

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/74ed4f67/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertyFilePropertySource.java
----------------------------------------------------------------------
diff --git 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertyFilePropertySource.java
 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertyFilePropertySource.java
index 2920460..5b11718 100644
--- 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertyFilePropertySource.java
+++ 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertyFilePropertySource.java
@@ -24,7 +24,7 @@ import java.util.Properties;
 /**
  * PropertySource backed by a properties file. Follows the same conventions as 
{@link PropertiesPropertySource}.
  *
- * @since 2.9
+ * @since 2.9.1
  */
 public class PropertyFilePropertySource extends PropertiesPropertySource {
 

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/74ed4f67/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertySource.java
----------------------------------------------------------------------
diff --git 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertySource.java 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertySource.java
index a197aec..c334879 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertySource.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/PropertySource.java
@@ -28,7 +28,7 @@ import java.util.regex.Pattern;
 /**
  * A source for global configuration properties.
  *
- * @since 2.9
+ * @since 2.9.1
  */
 public interface PropertySource {
 
@@ -59,7 +59,7 @@ public interface PropertySource {
     /**
      * Comparator for ordering PropertySource instances by priority.
      *
-     * @since 2.9
+     * @since 2.9.1
      */
     class Comparator implements java.util.Comparator<PropertySource>, 
Serializable {
         private static final long serialVersionUID = 1L;
@@ -73,7 +73,7 @@ public interface PropertySource {
     /**
      * Utility methods useful for PropertySource implementations.
      *
-     * @since 2.9
+     * @since 2.9.1
      */
     final class Util {
         private static final String PREFIXES = 
"(?i:^log4j2?[-._/]?|^org\\.apache\\.logging\\.log4j\\.)?";

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/74ed4f67/log4j-api/src/main/java/org/apache/logging/log4j/util/SystemPropertiesPropertySource.java
----------------------------------------------------------------------
diff --git 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/SystemPropertiesPropertySource.java
 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/SystemPropertiesPropertySource.java
index 8733f23..290a604 100644
--- 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/SystemPropertiesPropertySource.java
+++ 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/SystemPropertiesPropertySource.java
@@ -22,7 +22,7 @@ import java.util.Map;
  * PropertySource backed by the current system properties. Other than having a 
higher priority over normal properties,
  * this follows the same rules as {@link PropertiesPropertySource}.
  *
- * @since 2.9
+ * @since 2.9.1
  */
 public class SystemPropertiesPropertySource implements PropertySource {
 

Reply via email to