fix marked as non null err and removed profiles debug
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 38s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 38s
This commit is contained in:
parent
c6289d1c8e
commit
69281d113c
@ -41,8 +41,6 @@ public abstract class ProfileHolder {
|
|||||||
Serializable profile = getProfiles().get(clazz.getSimpleName());
|
Serializable profile = getProfiles().get(clazz.getSimpleName());
|
||||||
if (profile == null) {
|
if (profile == null) {
|
||||||
T newProfile = clazz.cast(clazz.getDeclaredConstructors()[0].newInstance());
|
T newProfile = clazz.cast(clazz.getDeclaredConstructors()[0].newInstance());
|
||||||
|
|
||||||
log.info("instance of profiles: {}", document.get("profiles").getClass().getSimpleName());
|
|
||||||
Document profiles = document.get("profiles", new org.bson.Document());
|
Document profiles = document.get("profiles", new org.bson.Document());
|
||||||
Document profileDocument = (Document) profiles.get(clazz.getSimpleName());
|
Document profileDocument = (Document) profiles.get(clazz.getSimpleName());
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ public interface EventListener {
|
|||||||
* @param guild the guild the user left
|
* @param guild the guild the user left
|
||||||
* @param user the user that left the guild
|
* @param user the user that left the guild
|
||||||
*/
|
*/
|
||||||
default void onGuildMemberLeave(@NonNull BatGuild guild, @NonNull BatUser user, @NonNull GuildMemberRemoveEvent event) {
|
default void onGuildMemberLeave(@NonNull BatGuild guild, BatUser user, @NonNull GuildMemberRemoveEvent event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user