mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
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;
|
package org.geysermc.connector.dump;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||||
import com.github.steveice10.mc.protocol.MinecraftConstants;
|
import com.github.steveice10.mc.protocol.MinecraftConstants;
|
||||||
import it.unimi.dsi.fastutil.objects.Object2IntMap;
|
import it.unimi.dsi.fastutil.objects.Object2IntMap;
|
||||||
import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap;
|
import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap;
|
||||||
|
@ -47,6 +48,9 @@ import java.util.Properties;
|
||||||
@Getter
|
@Getter
|
||||||
public class DumpInfo {
|
public class DumpInfo {
|
||||||
|
|
||||||
|
@JsonIgnore
|
||||||
|
private static final long MEGABYTE = 1024L * 1024L;
|
||||||
|
|
||||||
private final DumpInfo.VersionInfo versionInfo;
|
private final DumpInfo.VersionInfo versionInfo;
|
||||||
private Properties gitInfo;
|
private Properties gitInfo;
|
||||||
private final GeyserConfiguration config;
|
private final GeyserConfiguration config;
|
||||||
|
@ -148,8 +152,6 @@ public class DumpInfo {
|
||||||
private final long max;
|
private final long max;
|
||||||
|
|
||||||
RamInfo() {
|
RamInfo() {
|
||||||
final long MEGABYTE = 1024L * 1024L;
|
|
||||||
|
|
||||||
this.free = Runtime.getRuntime().freeMemory() / MEGABYTE;
|
this.free = Runtime.getRuntime().freeMemory() / MEGABYTE;
|
||||||
this.total = Runtime.getRuntime().totalMemory() / MEGABYTE;
|
this.total = Runtime.getRuntime().totalMemory() / MEGABYTE;
|
||||||
this.max = Runtime.getRuntime().maxMemory() / MEGABYTE;
|
this.max = Runtime.getRuntime().maxMemory() / MEGABYTE;
|
||||||
|
|
Loading…
Reference in a new issue