aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChas Honton <chas@apache.org>2015-08-11 05:19:31 +0000
committerChas Honton <chas@apache.org>2015-08-11 05:19:31 +0000
commit31799e060afc7998ac5421ab682633ec3568b3bc (patch)
tree11e003024bd179782b4e130cad46558ccbea4d5e
parentdb1e301c394ee46980fcd0ca2aa790aa42509a60 (diff)
downloadapache-commons-bcel-31799e060afc7998ac5421ab682633ec3568b3bc.tar.gz
BCEL-226
FIx RAT messages git-svn-id: https://svn.apache.org/repos/asf/commons/proper/bcel/trunk@1695209 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--LICENSE-header.txt15
-rw-r--r--src/assembly/bin.xml1
-rwxr-xr-xsrc/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeInterface01.java17
-rwxr-xr-xsrc/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeSpecial01.java17
-rwxr-xr-xsrc/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeSpecial02.java17
-rwxr-xr-xsrc/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeStatic01.java17
-rwxr-xr-xsrc/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeVirtual01.java17
-rwxr-xr-xsrc/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeVirtual02.java17
8 files changed, 102 insertions, 16 deletions
diff --git a/LICENSE-header.txt b/LICENSE-header.txt
deleted file mode 100644
index 649b1ab6..00000000
--- a/LICENSE-header.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-^/\*\*?\s*$
-^ \*\s*Licensed to the Apache Software Foundation \(ASF\) under one or more\s*$
-^ \*\s*contributor license agreements. See the NOTICE file distributed with\s*$
-^ \*\s*this work for additional information regarding copyright ownership.\s*$
-^ \*\s*The ASF licenses this file to You under the Apache License, Version 2.0\s*$
-^ \*\s*\(the \"License\"\); you may not use this file except in compliance with\s*$
-^ \*\s*the License. You may obtain a copy of the License at\s*$
-^ \*\s*$
-^ \*\s+http://www\.apache\.org/licenses/LICENSE-2\.0\s*$
-^ \*\s*$
-^ \*\s*Unless required by applicable law or agreed to in writing, software\s*$
-^ \*\s*distributed under the License is distributed on an "AS IS" BASIS,\s*$
-^ \*\s*WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\s*$
-^ \*\s*See the License for the specific language governing permissions and\s*$
-^ \*\s*limitations under the License.\s*$ \ No newline at end of file
diff --git a/src/assembly/bin.xml b/src/assembly/bin.xml
index a58c2e57..05d8661e 100644
--- a/src/assembly/bin.xml
+++ b/src/assembly/bin.xml
@@ -27,7 +27,6 @@
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
<include>README.txt</include>
- <include>RELEASE-NOTES.txt</include>
</includes>
</fileSet>
<fileSet>
diff --git a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeInterface01.java b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeInterface01.java
index 131eac1c..183d2867 100755
--- a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeInterface01.java
+++ b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeInterface01.java
@@ -1,3 +1,20 @@
+/*
+ * 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.commons.bcel6.verifier.tests;
public class TestLegalInvokeInterface01{
diff --git a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeSpecial01.java b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeSpecial01.java
index 5938ed33..df428a75 100755
--- a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeSpecial01.java
+++ b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeSpecial01.java
@@ -1,3 +1,20 @@
+/*
+ * 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.commons.bcel6.verifier.tests;
public class TestLegalInvokeSpecial01{
diff --git a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeSpecial02.java b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeSpecial02.java
index b8321ef5..6d26f1b5 100755
--- a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeSpecial02.java
+++ b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeSpecial02.java
@@ -1,3 +1,20 @@
+/*
+ * 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.commons.bcel6.verifier.tests;
abstract public class TestLegalInvokeSpecial02 implements Runnable{
diff --git a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeStatic01.java b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeStatic01.java
index 312f021a..927d8867 100755
--- a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeStatic01.java
+++ b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeStatic01.java
@@ -1,3 +1,20 @@
+/*
+ * 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.commons.bcel6.verifier.tests;
public class TestLegalInvokeStatic01 extends Thread{
diff --git a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeVirtual01.java b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeVirtual01.java
index 1b1a8228..a94066e2 100755
--- a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeVirtual01.java
+++ b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeVirtual01.java
@@ -1,3 +1,20 @@
+/*
+ * 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.commons.bcel6.verifier.tests;
public class TestLegalInvokeVirtual01 {
diff --git a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeVirtual02.java b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeVirtual02.java
index fc663e1d..c9c2dc74 100755
--- a/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeVirtual02.java
+++ b/src/test/java/org/apache/commons/bcel6/verifier/tests/TestLegalInvokeVirtual02.java
@@ -1,3 +1,20 @@
+/*
+ * 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.commons.bcel6.verifier.tests;
abstract public class TestLegalInvokeVirtual02 implements Runnable{