Skip to content

Commit

Permalink
Removed usless(?) Intellij stuff
Browse files Browse the repository at this point in the history
Reduced shutdown timer
  • Loading branch information
egg82 committed Nov 8, 2018
1 parent 87128d4 commit 1d7aa17
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions Bukkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
<exclude>javax/annotation/**</exclude>
<exclude>junit/**</exclude>
<exclude>org/apache/commons/lang3/**</exclude>
<exclude>org/intellij/**</exclude>
<exclude>org/junit/**</exclude>
<exclude>org/json/simple/**</exclude>
<exclude>org/yaml/snakeyaml/**</exclude>
Expand Down
2 changes: 1 addition & 1 deletion Bukkit/src/main/java/me/egg82/antivpn/AntiVPN.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void onEnable() {
}

public void onDisable() {
taskFactory.shutdown(20, TimeUnit.SECONDS);
taskFactory.shutdown(8, TimeUnit.SECONDS);
commandManager.unregisterCommands();

for (BukkitEventSubscriber<?> event : events) {
Expand Down
1 change: 1 addition & 0 deletions Bungee/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@
<exclude>com/google/common/**</exclude>
<exclude>junit/**</exclude>
<exclude>org/yaml/snakeyaml/**</exclude>
<exclude>org/intellij/**</exclude>
<exclude>org/junit/**</exclude>

<!-- dep-injected -->
Expand Down
1 change: 1 addition & 0 deletions Velocity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
<exclude>javax/annotation/**</exclude>
<exclude>org/checkerframework/**</exclude>
<exclude>org/codehaus/**</exclude>
<exclude>org/intellij/**</exclude>
<exclude>junit/**</exclude>
<exclude>org/junit/**</exclude>

Expand Down

0 comments on commit 1d7aa17

Please sign in to comment.