Skip to content

Commit

Permalink
S1mple
Browse files Browse the repository at this point in the history
  • Loading branch information
HaHaWTH committed Apr 17, 2024
1 parent 9443e15 commit a32ab87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/wdsj/asw/bukkit/util/TimingUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static String getJvmVendor() {

public static long getProcessAverage() {
long sum = 0L;
for (Long l : processStatistic) {
for (long l : processStatistic) {
sum += l;
}
return processStatistic.size() != 0 ? sum / processStatistic.size() : 0L;
Expand Down

0 comments on commit a32ab87

Please sign in to comment.