-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NPE in NodeCloudNetModule #37
Comments
Issue-Label Bot is automatically applying the label Links: app homepage, dashboard and code for this bot. |
That's due to Lombok's Getter annotation which doesn't provide proper lazy initialization. Lombok does ship with lazy value initialization but with a way more complex behavior/logic. Consider this as done EDIT: Turns out there's already a static function which is not being generated by Lombok but still just returns the plain old non initialized field. |
@robertschuck FYI: The issue has been fixed by commit a8dfe45; Issue remains open until the |
Describe the bug
If you use CloudPermissionsPermissionManagement in a NodeCloudNetModule, the instance (getInstance()) is null.
Steps for reproducing
Additional context
How to bypass it without changing the cloud source code:
The text was updated successfully, but these errors were encountered: