private void processINI() throws FileNotFoundException, IOException {
SPProgressBarPlug.setStatus("ASIS: Processing INI");
SPProgressBarPlug.incrementBar();
//Sets up the file reader for the ini file.
INI ini = null;
//Sets up the file reader for the ini file.
try {
ini = new INI("ASIS.ini");
} catch (IOException ex) {
Logger.getLogger(NPCPotions.class.getName()).log(Level.SEVERE, null, ex);
}
Collection<INI.IniSectionHead> sections = getSectionList();
ini.addSection(sections);
try {
ini.readData();
} catch (IOException ex) {
Logger.getLogger(NPCPotions.class.getName()).log(Level.SEVERE, null, ex);
}
initializeLists(ini);