diff options
author | jhugunin <jhugunin> | 2002-12-18 05:24:30 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-18 05:24:30 +0000 |
commit | aec4f4dccb57479ec85abb21879ce8b02f4ccbc9 (patch) | |
tree | 9d966e3e1f45e44983385b059c0162f5152f212e /tests/new | |
parent | 29f7bfab4410cc182e760475ba6e71c2a62c3c47 (diff) | |
download | aspectj-aec4f4dccb57479ec85abb21879ce8b02f4ccbc9.tar.gz aspectj-aec4f4dccb57479ec85abb21879ce8b02f4ccbc9.zip |
removed use of getSourceLocation.getColumn()
Diffstat (limited to 'tests/new')
-rw-r--r-- | tests/new/NegativeSourceLocation.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/new/NegativeSourceLocation.java b/tests/new/NegativeSourceLocation.java index aa1801459..89e71783c 100644 --- a/tests/new/NegativeSourceLocation.java +++ b/tests/new/NegativeSourceLocation.java @@ -262,10 +262,11 @@ aspect Aspect { if (0 > i) { Signal.failed(context + " line<0: " + i); } - i = sl.getColumn(); - if (0 > i) { - Signal.failed(context + " column<0: " + i); - } + // 1.1 doesn't provide column info +// i = sl.getColumn(); +// if (0 > i) { +// Signal.failed(context + " column<0: " + i); +// } } } } // Aspect |