Remove unnecessary modifier.
Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/f884234a Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/f884234a Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/f884234a Branch: refs/heads/LOG4J2-1278-gc-free-logger Commit: f884234a8bfff69252a6dcc91ef3e95732ec765c Parents: 3a0dd1f Author: Matt Sicker <[email protected]> Authored: Sun Feb 21 20:29:15 2016 -0600 Committer: Matt Sicker <[email protected]> Committed: Sun Feb 21 20:29:15 2016 -0600 ---------------------------------------------------------------------- .../src/main/java/org/apache/logging/log4j/spi/StandardLevel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f884234a/log4j-api/src/main/java/org/apache/logging/log4j/spi/StandardLevel.java ---------------------------------------------------------------------- diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/spi/StandardLevel.java b/log4j-api/src/main/java/org/apache/logging/log4j/spi/StandardLevel.java index e8c1d6c..8a10e2d 100644 --- a/log4j-api/src/main/java/org/apache/logging/log4j/spi/StandardLevel.java +++ b/log4j-api/src/main/java/org/apache/logging/log4j/spi/StandardLevel.java @@ -67,7 +67,7 @@ public enum StandardLevel { private final int intLevel; - private StandardLevel(final int val) { + StandardLevel(final int val) { intLevel = val; }
