Shane Freeder

Results 445 comments of Shane Freeder

Not entirely fond of something like this, just, mucho hacko

imho, it literally just needs to create the file when creating a new config folder, nothing more, nothing less; There is literally 0 reasons to have a config for this...

```java @EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true) public void onPlayerTeleport(final PlayerTeleportEvent event) { if (event.getFrom().getWorld() != event.getTo().getWorld()) { if (event.getPlayer().isFlying()) { worldTeleports.put(event.getPlayer().getUniqueId(), Bukkit.getCurrentTick()); } } ``` ```java private final Map...

``` [23:06:07 ERROR]: Nag author: 'filoghost' of 'HolographicDisplays' about the following: This plugin is not properly shutting down its async tasks when it is being shut down. This task may...

jar hashing only works when you're using release dependencies or hard-versioned snapshots, so that would be more a false sense of security than anything else; Sadly, there comes some level...

Antivirus software is generally useless about jar files and often just flags stuff somewhat blindly at best. I don’t think that the malicious result from a singular piece of software...

I've not heard of a memory leak inside of OpenJDK, just a general misunderstanding of how javas memory model works (and the odd once in a blue moon native leak...

It's not our role to go out of our way to cater towards hosts enforcing unsupported environments onto people, especially ones which are commonly known within the java community to...

Where on server init are you doing that? We need minimal reproduction code, as 99% chance you're causing stuff to be initialized before the worlds are loaded

What you’d do is add default methods which defer to the legacy methods, add add the MustOverride annotation to hint people into replacing them