Package net.minecraftforge.common.config.Configuration

Examples of net.minecraftforge.common.config.Configuration.UnicodeInputStreamReader


        return;

      if (!file.canRead())
        return;

      UnicodeInputStreamReader filein = new UnicodeInputStreamReader(new FileInputStream(file), "UTF-8");
      BufferedReader reader = new BufferedReader(filein);

      String lastComment = null;
      String line;
View Full Code Here

TOP

Related Classes of net.minecraftforge.common.config.Configuration.UnicodeInputStreamReader

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.