This commit is contained in:
fur%netscape.com 1999-01-21 00:42:03 +00:00
Родитель 65fec7605c
Коммит 7b5c6b88c2
1 изменённых файлов: 5 добавлений и 5 удалений

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

@ -185,11 +185,11 @@ Netscape_Java_java_lang_Class_newInstance0(Java_java_lang_Class *inClass)
nDeclaredConstructors =
const_cast<Class *>(&clazz)->getDeclaredConstructors(declaredConstructors);
/* Now go through each of these declared constructors and see if we have
* package access to any of them
* FIXME This is horrendous, too much work. Think about not doing this much
* work everytime
*/
/* Now go through each of these declared constructors and see if we have
* package access to any of them
* FIXME This is horrendous, too much work. Think about not doing this much
* work everytime.
*/
for (int i = 0; i < nDeclaredConstructors; i++) {
constructor = const_cast<Constructor*>(declaredConstructors[i]);