diff options
author | Andy Clement <aclement@pivotal.io> | 2021-06-06 16:56:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-06 16:56:17 -0700 |
commit | 67b1c353a02c335074a736ebf76a49bf24eefb19 (patch) | |
tree | 69844405209043e2e18aa9eef0f01f287bc1ae52 /tests/features171/pr386341/A.java | |
parent | 82df3f0fc9842758f15f12299c9113e48f1ccb5c (diff) | |
parent | 49cb924f5402c9d24379ae1af62def6fa5892649 (diff) | |
download | aspectj-67b1c353a02c335074a736ebf76a49bf24eefb19.tar.gz aspectj-67b1c353a02c335074a736ebf76a49bf24eefb19.zip |
Merge pull request #65 from kriegaex/licence-upgrade-epl2
Upgrade license from CPLv1/EPLv1 to EPLv2
Diffstat (limited to 'tests/features171/pr386341/A.java')
-rw-r--r-- | tests/features171/pr386341/A.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/features171/pr386341/A.java b/tests/features171/pr386341/A.java index 98bbf4fb4..4e7930e91 100644 --- a/tests/features171/pr386341/A.java +++ b/tests/features171/pr386341/A.java @@ -1,13 +1,13 @@ /******************************************************************************* * 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 *******************************************************************************/ class AtomicAction { @@ -20,7 +20,7 @@ public class A { A a = new A(); a.m(); } - + public void m() throws Exception{ Thread.sleep(5*1000); } |