diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-06-04 07:58:52 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-06-04 07:58:52 +0700 |
commit | 49cb924f5402c9d24379ae1af62def6fa5892649 (patch) | |
tree | 69844405209043e2e18aa9eef0f01f287bc1ae52 /tests/bugs1611 | |
parent | 82df3f0fc9842758f15f12299c9113e48f1ccb5c (diff) | |
download | aspectj-49cb924f5402c9d24379ae1af62def6fa5892649.tar.gz aspectj-49cb924f5402c9d24379ae1af62def6fa5892649.zip |
Upgrade license from CPLv1/EPLv1 to EPLv2
This was required by the Eclipse team as one precondition for the next
release.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests/bugs1611')
-rw-r--r-- | tests/bugs1611/pr335783/A.java | 36 | ||||
-rw-r--r-- | tests/bugs1611/pr335783/X.aj | 8 |
2 files changed, 22 insertions, 22 deletions
diff --git a/tests/bugs1611/pr335783/A.java b/tests/bugs1611/pr335783/A.java index 5b399ea20..a7b2d13c2 100644 --- a/tests/bugs1611/pr335783/A.java +++ b/tests/bugs1611/pr335783/A.java @@ -8,31 +8,31 @@ /******************************************************************************* * Copyright (c) 2010 Contributors * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 + * are made available under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * Andy Clement - Repro test case - * Abraham Nevado + * Abraham Nevado *******************************************************************************/ public class A implements java.io.Serializable{ - - public A() - { - } - public void doSomething() throws Exception - { - - - } - public static void main(String[] args) throws Exception { - A lc = new A(); - lc.doSomething(); - - } + + public A() + { + } + public void doSomething() throws Exception + { + + + } + public static void main(String[] args) throws Exception { + A lc = new A(); + lc.doSomething(); + + } } - + diff --git a/tests/bugs1611/pr335783/X.aj b/tests/bugs1611/pr335783/X.aj index c14cd2bac..e854772c6 100644 --- a/tests/bugs1611/pr335783/X.aj +++ b/tests/bugs1611/pr335783/X.aj @@ -1,15 +1,15 @@ /******************************************************************************* * Copyright (c) 2010 Contributors All rights reserved. This program and the * accompanying materials are made available under the terms of the Eclipse - * Public License v1.0 which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * + * Public License v 2.0 which accompanies this distribution, and is available at + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + * * Contributors: Abraham Nevado *******************************************************************************/ aspect X { - public pointcut doSomething(Object o): + public pointcut doSomething(Object o): execution(* *()) && target(o); before(Object o) : doSomething(o) { |