Repository: logging-log4j2 Updated Branches: refs/heads/master a217d5e14 -> 255625e48
Don't need second semicolon. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/255625e4 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/255625e4 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/255625e4 Branch: refs/heads/master Commit: 255625e4849bad6544ee6dd7720a99e0d535dc5d Parents: a217d5e Author: Gary Gregory <ggreg...@apache.org> Authored: Thu Jan 4 12:04:18 2018 -0700 Committer: Gary Gregory <ggreg...@apache.org> Committed: Thu Jan 4 12:04:18 2018 -0700 ---------------------------------------------------------------------- .../java/org/apache/logging/log4j/util/SortedArrayStringMap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/255625e4/log4j-api/src/main/java/org/apache/logging/log4j/util/SortedArrayStringMap.java ---------------------------------------------------------------------- diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/util/SortedArrayStringMap.java b/log4j-api/src/main/java/org/apache/logging/log4j/util/SortedArrayStringMap.java index 28910b2..b54dc1b 100644 --- a/log4j-api/src/main/java/org/apache/logging/log4j/util/SortedArrayStringMap.java +++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/SortedArrayStringMap.java @@ -98,7 +98,7 @@ public class SortedArrayStringMap implements IndexedStringMap { Method getMethod = null; for (Method method : methods) { if (method.getName().equals("setObjectInputFilter")) { - setMethod = method;; + setMethod = method; } else if (method.getName().equals("getObjectInputFilter")) { getMethod = method; }