Fixing line-table initialization issue: set itsLineNumberTableTop to 0 at the end of stopMethod so generation of multiple methods with source line information would work.

This commit is contained in:
igor%mir2.org 2003-08-22 09:10:14 +00:00
Родитель f8e8aed8a7
Коммит a803853242
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -379,7 +379,7 @@ public class ClassFileWriter {
itsExceptionTable = null;
itsExceptionTableTop = 0;
itsLineNumberTable = null;
itsLineNumberTableTop = 0;
itsCodeBufferTop = 0;
itsCurrentMethod = null;
itsMaxStack = 0;