diff options
author | mkersten <mkersten> | 2003-08-07 09:16:05 +0000 |
---|---|---|
committer | mkersten <mkersten> | 2003-08-07 09:16:05 +0000 |
commit | be23e3d01d1acde57b8ae25e04d0fc011a71e219 (patch) | |
tree | 341c6274bc12289cbdf38b54d0d0031fdd816fac /testing/testsrc | |
parent | 02d3af8df7b3131a7dd64e5e19e19367e275b0bc (diff) | |
download | aspectj-be23e3d01d1acde57b8ae25e04d0fc011a71e219.tar.gz aspectj-be23e3d01d1acde57b8ae25e04d0fc011a71e219.zip |
Changed org.aspectj.bridge.IMessage.getISourceLocation to getSourceLocation in order to match method naming conventions.
Diffstat (limited to 'testing/testsrc')
-rw-r--r-- | testing/testsrc/org/aspectj/testing/harness/bridge/AjcSpecTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/testsrc/org/aspectj/testing/harness/bridge/AjcSpecTest.java b/testing/testsrc/org/aspectj/testing/harness/bridge/AjcSpecTest.java index 2c3c46e98..c55b0a894 100644 --- a/testing/testsrc/org/aspectj/testing/harness/bridge/AjcSpecTest.java +++ b/testing/testsrc/org/aspectj/testing/harness/bridge/AjcSpecTest.java @@ -299,7 +299,7 @@ public class AjcSpecTest extends TestCase { assertTrue(lhs.getKind() == rhs.getKind()); same(lhs.getMessage(), rhs.getMessage(), a); assertEquals(lhs.getThrown(), rhs.getThrown()); - sameSourceLocation(lhs.getISourceLocation(), rhs.getISourceLocation(), a); + sameSourceLocation(lhs.getSourceLocation(), rhs.getSourceLocation(), a); } public static void sameSourceLocation(ISourceLocation lhs, ISourceLocation rhs, Assert a) { |