You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we assume that the generated code is in the same package of the target object. If the visibility is public or package private, then we generate code that uses the members directly. If they are protected or private, we use reflection.
We don't need to use reflection for protected cases as those members can be access within the same package.
The text was updated successfully, but these errors were encountered:
Right now we assume that the generated code is in the same package of the target object. If the visibility is public or package private, then we generate code that uses the members directly. If they are protected or private, we use reflection.
We don't need to use reflection for protected cases as those members can be access within the same package.
The text was updated successfully, but these errors were encountered: