You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/06/02 21:19:56 UTC

[commons-bcel] branch master updated (dae276d -> 58c71f2)

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

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git.


    from dae276d  Don't need to nest else clause.
     new f04ce8e  IOException not needed in test signature.
     new 5879bf2  Use JApiCmp instead of Clirr since Clirr does not know about Java 8.
     new 58c71f2  Undo.

The 3 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.


Summary of changes:
 .travis.yml                                        |  2 +-
 src/conf/clirr-ignored-diffs.xml                   | 38 ----------------------
 .../org/apache/bcel/util/ClassPathTestCase.java    |  2 +-
 3 files changed, 2 insertions(+), 40 deletions(-)
 delete mode 100644 src/conf/clirr-ignored-diffs.xml


[commons-bcel] 02/03: Use JApiCmp instead of Clirr since Clirr does not know about Java 8.

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git

commit 5879bf2ae40c0115e0e8b5df89149fdd98056e0a
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Jun 2 14:35:04 2020 -0400

    Use JApiCmp instead of Clirr since Clirr does not know about Java 8.
---
 src/conf/clirr-ignored-diffs.xml | 38 --------------------------------------
 1 file changed, 38 deletions(-)

diff --git a/src/conf/clirr-ignored-diffs.xml b/src/conf/clirr-ignored-diffs.xml
deleted file mode 100644
index dfe1efa..0000000
--- a/src/conf/clirr-ignored-diffs.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.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.
--->
-<!--
-    Ignore some differences that are not relevant to the external API 
- -->
-<differences>
-<!--
-  <difference>
-    <className>**/example/*Remote</className>
-    <differenceType>...</differenceType>
-    <field>my*</field>
-    <method>MyObject* method(int, java.lang.String)</method>
-    <from>...</from>
-    <to>...</to>
-  </difference>
--->
-  <!-- dropped Serializable -->
-  <difference>
-    <className>**/*</className>
-    <differenceType>4001</differenceType>
-    <to>java/io/Serializable</to>
-  </difference>
-</differences>


[commons-bcel] 03/03: Undo.

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git

commit 58c71f288a3db4c729df82c62a99f17e0cd20e91
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Jun 2 17:19:51 2020 -0400

    Undo.
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index ae77d0b..742c26b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,4 +26,4 @@ jdk:
   - openjdk-ea
 
 after_success:
-  - mvn -Ddoclint:none clean apache-rat:check cobertura:cobertura coveralls:report
+  - mvn -Ddoclint:none clean cobertura:cobertura coveralls:report


[commons-bcel] 01/03: IOException not needed in test signature.

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git

commit f04ce8eb3075b0ec210d0ed96a38bd82e051ad79
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Jun 2 14:34:53 2020 -0400

    IOException not needed in test signature.
---
 src/test/java/org/apache/bcel/util/ClassPathTestCase.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/bcel/util/ClassPathTestCase.java b/src/test/java/org/apache/bcel/util/ClassPathTestCase.java
index 0e8057d..c38cf7e 100644
--- a/src/test/java/org/apache/bcel/util/ClassPathTestCase.java
+++ b/src/test/java/org/apache/bcel/util/ClassPathTestCase.java
@@ -30,7 +30,7 @@ public class ClassPathTestCase extends AbstractTestCase {
         Assert.assertNotNull(ClassPath.SYSTEM_CLASS_PATH.getClassFile("java.lang.String"));
     }
 
-    public void testGetResource() throws IOException {
+    public void testGetResource() {
         Assert.assertNotNull(ClassPath.SYSTEM_CLASS_PATH.getResource("java/lang/String.class"));
     }