You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2016/03/01 17:05:11 UTC

logging-log4j2 git commit: Remove obsolete test for LOG4J2-1300.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 0434a2713 -> 1bd8a5139


Remove obsolete test for LOG4J2-1300.


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

Branch: refs/heads/master
Commit: 1bd8a513959bc7df70d81002098b584b1e7ea87b
Parents: 0434a27
Author: Matt Sicker <bo...@gmail.com>
Authored: Tue Mar 1 10:04:58 2016 -0600
Committer: Matt Sicker <bo...@gmail.com>
Committed: Tue Mar 1 10:05:11 2016 -0600

----------------------------------------------------------------------
 .../util/KeyValuePairSerializationTest.java     | 39 --------------------
 1 file changed, 39 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/1bd8a513/log4j-core/src/test/java/org/apache/logging/log4j/core/util/KeyValuePairSerializationTest.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/util/KeyValuePairSerializationTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/util/KeyValuePairSerializationTest.java
deleted file mode 100644
index 0893aed..0000000
--- a/log4j-core/src/test/java/org/apache/logging/log4j/core/util/KeyValuePairSerializationTest.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache license, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the license for the specific language governing permissions and
- * limitations under the license.
- */
-package org.apache.logging.log4j.core.util;
-
-import java.io.Serializable;
-import java.util.Arrays;
-import java.util.Collection;
-
-import org.apache.logging.log4j.AbstractSerializationTest;
-import org.junit.runners.Parameterized.Parameters;
-
-public class KeyValuePairSerializationTest extends AbstractSerializationTest {
-
-    @Parameters
-    public static Collection<Object[]> data() {
-        return Arrays.asList(new Object[][] {
-                { new KeyValuePair("testuser", "DEBUG") },
-                { new KeyValuePair("JohnDoe", "warn") } });
-    }
-
-    public KeyValuePairSerializationTest(final Serializable serializable) {
-        super(serializable);
-    }
-
-}