forked from GeyserMC/Geyser
Move MEGABYTE to a constant (#1059)
This commit is contained in:
parent
0c3a6f1a6a
commit
118747c66b
1 changed files with 4 additions and 2 deletions
|
@ -26,6 +26,7 @@
|
|||
|
||||
package org.geysermc.connector.dump;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.github.steveice10.mc.protocol.MinecraftConstants;
|
||||
import it.unimi.dsi.fastutil.objects.Object2IntMap;
|
||||
import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap;
|
||||
|
@ -47,6 +48,9 @@ import java.util.Properties;
|
|||
@Getter
|
||||
public class DumpInfo {
|
||||
|
||||
@JsonIgnore
|
||||
private static final long MEGABYTE = 1024L * 1024L;
|
||||
|
||||
private final DumpInfo.VersionInfo versionInfo;
|
||||
private Properties gitInfo;
|
||||
private final GeyserConfiguration config;
|
||||
|
@ -148,8 +152,6 @@ public class DumpInfo {
|
|||
private final long max;
|
||||
|
||||
RamInfo() {
|
||||
final long MEGABYTE = 1024L * 1024L;
|
||||
|
||||
this.free = Runtime.getRuntime().freeMemory() / MEGABYTE;
|
||||
this.total = Runtime.getRuntime().totalMemory() / MEGABYTE;
|
||||
this.max = Runtime.getRuntime().maxMemory() / MEGABYTE;
|
||||
|
|
Loading…
Reference in a new issue