Typo fixes

This commit is contained in:
games647
2022-06-23 12:32:22 +02:00
parent a5942cba74
commit b041a89209
5 changed files with 8 additions and 9 deletions
@@ -43,7 +43,7 @@ import java.util.Optional;
*/
public class ProxyAgnosticMojangResolver extends MojangResolver {
/**
* A formatting string containing an URL used to call the {@code hasJoined} method on mojang session servers.
* A formatting string containing a URL used to call the {@code hasJoined} method on mojang session servers.
*
* Formatting parameters:
* 1. The username of the player in question
@@ -59,7 +59,7 @@ public interface PlatformPlugin<C> {
default ThreadFactory getThreadFactory() {
return new ThreadFactoryBuilder()
.setNameFormat(getName() + " Pool Thread #%1$d")
// Hikari create daemons by default. We could daemon threads for our own scheduler too
// Hikari create daemons by default. We could use daemon threads for our own scheduler too
// because we safely shut down
.setDaemon(true)
.build();