aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1611/pr335783/X.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs1611/pr335783/X.aj')
-rw-r--r--tests/bugs1611/pr335783/X.aj8
1 files changed, 4 insertions, 4 deletions
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) {