removed use of getSourceLocation.getColumn()

This commit is contained in:
jhugunin 2002-12-18 05:24:30 +00:00
parent 29f7bfab44
commit aec4f4dccb

View File

@ -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