add stub for getModifiers()

This commit is contained in:
Volker Berlin 2022-06-26 22:07:23 +02:00
parent 9da6d8e736
commit 28cc29a30a
No known key found for this signature in database
GPG Key ID: 988423EF815BE4CB

View File

@ -318,6 +318,13 @@ class ReplacementForClass<T> {
return classIdx >= 0 ? classConstant( classIdx ) : null;
}
/**
* Replacement of the native Java method getModifiers()
*/
public int getModifiers() {
return 0;
}
/**
* Replacement of the Java method getSimpleName()
*