[CI-SKIP] Cleanup: PAIL -> OBFHELPER

This commit is contained in:
Sotr
2018-07-25 00:37:20 +08:00
parent cf300713b4
commit 4c7da04d9f
28 changed files with 109 additions and 110 deletions

View File

@@ -1,7 +1,6 @@
package net.minecraft.server;
import com.destroystokyo.paper.exception.ServerInternalException;
import com.google.common.collect.Maps;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.File;
@@ -95,7 +94,7 @@ public class RegionFileCache {
}
// CraftBukkit start - call sites hoisted for synchronization
public static synchronized NBTTagCompound d(File file, int i, int j) throws IOException {
public static synchronized NBTTagCompound d(File file, int i, int j) throws IOException { // OBFHELPER: read
RegionFile regionfile = a(file, i, j);
DataInputStream datainputstream = regionfile.a(i & 31, j & 31);
@@ -107,7 +106,7 @@ public class RegionFileCache {
return NBTCompressedStreamTools.a(datainputstream);
}
public static synchronized void e(File file, int i, int j, NBTTagCompound nbttagcompound) throws IOException {
public static synchronized void e(File file, int i, int j, NBTTagCompound nbttagcompound) throws IOException { // OBFHELPER: write
RegionFile regionfile = a(file, i, j);
DataOutputStream dataoutputstream = regionfile.b(i & 31, j & 31);

View File

@@ -27,8 +27,8 @@ public class WorldData {
private int h;
private int i;
private int j;
private volatile long k; // Akarin - volatile - PAIL: time
private volatile long l; // Akarin - volatile - PAIL: dayTime
private volatile long k; // Akarin - volatile - OBFHELPER: time
private volatile long l; // Akarin - volatile - OBFHELPER: dayTime
private long m;
private long n;
private NBTTagCompound o;