Examples of NBTReadLimiter


Examples of net.minecraft.server.NBTReadLimiter

  public static Object readTag(DataInput inputStream, int param) {
    return readTag.invoke(null, inputStream, param, new NBTReadLimiterUnlimited(0L));
  }
 
  public static Object readTag(DataInput inputStream, int param, long maxLength) {
    return readTag.invoke(null, inputStream, param, new NBTReadLimiter(maxLength));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.