Skip to content

Commit

Permalink
* Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
DxsSucuk committed Jul 28, 2022
1 parent a6e46cc commit 2c9ff48
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions src/main/java/de/presti/ree6/main/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import de.presti.ree6.events.OtherEvents;
import de.presti.ree6.logger.events.LoggerQueue;
import de.presti.ree6.sql.SQLConnector;
import de.presti.ree6.sql.entities.BirthdayWish;
import de.presti.ree6.utils.apis.Notifier;
import de.presti.ree6.utils.data.ArrayUtil;
import de.presti.ree6.utils.data.Config;
Expand All @@ -31,7 +30,6 @@
import java.time.Duration;
import java.util.Calendar;
import java.util.Date;
import java.util.List;

/**
* Main Application class, used to store Instances of System Relevant classes.
Expand Down
4 changes: 1 addition & 3 deletions src/main/java/de/presti/ree6/sql/SQLWorker.java
Original file line number Diff line number Diff line change
Expand Up @@ -1804,9 +1804,7 @@ public void addBirthday(String guildId, String channelId, String userId, String
} else {
saveEntity(new BirthdayWish(guildId, channelId, userId, new SimpleDateFormat("dd.MM.yyyy").parse(birthday)));
}
} catch (ParseException e) {
e.printStackTrace();
}
} catch (ParseException ignore) {}
}

/**
Expand Down

0 comments on commit 2c9ff48

Please sign in to comment.