diff options
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) { |