Package net.minecraft.util.io.netty.util

Examples of net.minecraft.util.io.netty.util.IllegalReferenceCountException


    public static CompressedImage fromBase64Png(String base64) {
      try {
        return new EncodedCompressedImage("data:image/png;base64," + base64);
      } catch (IllegalArgumentException e) {
        // Remind the caller
        throw new IllegalReferenceCountException("Must be a pure base64 encoded string. Cannot be an encoded text.", e);
      }
    }
View Full Code Here

TOP

Related Classes of net.minecraft.util.io.netty.util.IllegalReferenceCountException

Copyright © 2018 www.massapicom. 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.