You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rg...@apache.org on 2021/12/23 16:25:46 UTC

[logging-log4j1] annotated tag v1_2_11rc3 created (now cc63600)

This is an automated email from the ASF dual-hosted git repository.

rgoers pushed a change to annotated tag v1_2_11rc3
in repository https://gitbox.apache.org/repos/asf/logging-log4j1.git.


      at cc63600  (tag)
 tagging 08b2f40867d61c12337221cf73aaca1771531970 (commit)
      by No Author
      on Fri Jun 3 05:31:33 2005 +0000

- Log -----------------------------------------------------------------
v1_2_11rc3
-----------------------------------------------------------------------

This annotated tag includes the following new commits:

     new 08b2f40  This commit was manufactured by cvs2svn to create tag 'v1_2_11rc3'.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[logging-log4j1] 01/01: This commit was manufactured by cvs2svn to create tag 'v1_2_11rc3'.

Posted by rg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rgoers pushed a commit to annotated tag v1_2_11rc3
in repository https://gitbox.apache.org/repos/asf/logging-log4j1.git

commit 08b2f40867d61c12337221cf73aaca1771531970
Author: No Author <de...@apache.org>
AuthorDate: Fri Jun 3 05:31:33 2005 +0000

    This commit was manufactured by cvs2svn to create tag 'v1_2_11rc3'.
    
    git-svn-id: https://svn.apache.org/repos/asf/logging/log4j/tags/v1_2_11rc3@311387 13f79535-47bb-0310-9956-ffa450edef68
---
 tests/.cvsignore                                   |  8 ----
 .../apache/log4j/util/JunitTestRunnerFilter.java   | 46 ----------------------
 .../org/apache/log4j/util/SunReflectFilter.java    | 39 ------------------
 3 files changed, 93 deletions(-)

diff --git a/tests/.cvsignore b/tests/.cvsignore
deleted file mode 100644
index e3fa3d3..0000000
--- a/tests/.cvsignore
+++ /dev/null
@@ -1,8 +0,0 @@
-goEnv
-build.properties
-output
-classes
-lib
-coverage
-log4j.db*
-
diff --git a/tests/src/java/org/apache/log4j/util/JunitTestRunnerFilter.java b/tests/src/java/org/apache/log4j/util/JunitTestRunnerFilter.java
deleted file mode 100644
index 6f8dc6c..0000000
--- a/tests/src/java/org/apache/log4j/util/JunitTestRunnerFilter.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright 1999,2004 The Apache Software Foundation.
- * 
- * Licensed 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.log4j.util;
-
-import org.apache.oro.text.perl.Perl5Util;
-
-
-public class JunitTestRunnerFilter implements Filter {
-  Perl5Util util = new Perl5Util();
-
-  /**
-   * Filter out stack trace lines coming from the various JUnit TestRunners.
-   */
-  public String filter(String in) {
-    if (in == null) {
-      return null;
-    }
-
-    if (
-      util.match(
-          "/at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner/", in)) {
-      return null;
-    } else if (
-      util.match(
-          "/at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner/",
-          in)) {
-      return null;
-    } else {
-      return in;
-    }
-  }
-}
diff --git a/tests/src/java/org/apache/log4j/util/SunReflectFilter.java b/tests/src/java/org/apache/log4j/util/SunReflectFilter.java
deleted file mode 100644
index 141f5a7..0000000
--- a/tests/src/java/org/apache/log4j/util/SunReflectFilter.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright 1999,2004 The Apache Software Foundation.
- * 
- * Licensed 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.log4j.util;
-
-import org.apache.oro.text.perl.Perl5Util;
-
-/**
- * The sun.reflect.* lines are not present in all JDKs.
- * 
- * @author Ceki Gulcu
- */
-public class SunReflectFilter implements Filter {
-  Perl5Util util = new Perl5Util();
-
-  public String filter(String in) {
-    if(in == null) {
-      return null;
-    }
-    if (util.match("/at sun.reflect/", in)) {
-      return null;
-    } else {
-      return in;
-    }
-  }
-}