From: acolyer Date: Tue, 25 Feb 2003 17:04:49 +0000 (+0000) Subject: Bug 33011. getEndLine() was returning the start line. X-Git-Tag: V_1_1_b5~36 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d3594da1235d686a6692074702cc1632235dae13;p=aspectj.git Bug 33011. getEndLine() was returning the start line. --- diff --git a/bridge/src/org/aspectj/bridge/SourceLocation.java b/bridge/src/org/aspectj/bridge/SourceLocation.java index 5579082b6..9c8ebab3b 100644 --- a/bridge/src/org/aspectj/bridge/SourceLocation.java +++ b/bridge/src/org/aspectj/bridge/SourceLocation.java @@ -52,7 +52,7 @@ public class SourceLocation implements ISourceLocation, java.io.Serializable { } private final File sourceFile; - private final int line; + private final int startLine; private final int column; private final int endLine; private boolean noColumn; @@ -89,7 +89,7 @@ public class SourceLocation implements ISourceLocation, java.io.Serializable { LangUtil.throwIaxIfFalse(line <= endLine , line + " > " + endLine); LangUtil.throwIaxIfFalse(column >= 0, "negative column: " + column); this.sourceFile = file; - this.line = line; + this.startLine = line; this.column = column; this.endLine = endLine; } @@ -98,7 +98,7 @@ public class SourceLocation implements ISourceLocation, java.io.Serializable { return sourceFile; } public int getLine() { - return line; + return startLine; } /** @@ -110,7 +110,7 @@ public class SourceLocation implements ISourceLocation, java.io.Serializable { } public int getEndLine() { - return line; + return endLine; } /** @return String {file:}line{:column} */ @@ -121,7 +121,7 @@ public class SourceLocation implements ISourceLocation, java.io.Serializable { sb.append(sourceFile.getPath()); sb.append(":"); } - sb.append("" + line); + sb.append("" + startLine); if (!noColumn) { sb.append(":" + column); }