From aec4f4dccb57479ec85abb21879ce8b02f4ccbc9 Mon Sep 17 00:00:00 2001 From: jhugunin Date: Wed, 18 Dec 2002 05:24:30 +0000 Subject: [PATCH] removed use of getSourceLocation.getColumn() --- tests/new/NegativeSourceLocation.java | 9 +++++---- 1 file 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 -- 2.39.5