Fixing ArrayIndexOutOfBoundsException reported by Steven Beal caused by broken code to setup endLine in SourceInfo.updateLineInfo.

This commit is contained in:
igor%mir2.org 2002-08-15 06:42:45 +00:00
Родитель 55ec62b72d
Коммит 7ad5c25d66
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2233,7 +2233,7 @@ class SourceInfo {
}
int fnFirstLine = lines[0];
int fnEndLine = lines[0];
int fnEndLine = fnFirstLine + 1;
for (int i = 1; i != lines.length; ++i) {
int line = lines[i];
if (line < fnFirstLine) {