Replacing protected by private/package private to allow for better optimization.

This commit is contained in:
igor%mir2.org 2003-04-28 12:54:59 +00:00
Родитель 9e9fa17082
Коммит 5dc7316f87
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -152,7 +152,7 @@ public class IdFunction extends BaseFunction
return new RuntimeException("BAD FUNCTION ID="+id+" MASTER="+master);
}
protected IdFunctionMaster master;
protected int methodId;
IdFunctionMaster master;
private int methodId;
private boolean useCallAsConstructor;
}