]> source.dussan.org Git - aspectj.git/commitdiff
Bug 33011. getEndLine() was returning the start line.
authoracolyer <acolyer>
Tue, 25 Feb 2003 17:04:49 +0000 (17:04 +0000)
committeracolyer <acolyer>
Tue, 25 Feb 2003 17:04:49 +0000 (17:04 +0000)
bridge/src/org/aspectj/bridge/SourceLocation.java

index 5579082b6d0b914e0c4ebcff8e655da8fde0d19f..9c8ebab3b6457ca63004f875d677b90023c0dc2f 100644 (file)
@@ -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);
         }