input = new FileInputStream(this.file);
}
// ... and check if we have .xstream file
if (this.file.getAbsolutePath().endsWith(".zip")) {
this.loader = new ZIPLoader(this.file);
input = this.loader.getSessionInputStream();
}
// FIXED: #26
this.in = this.xstream.createObjectInputStream(new BufferedReader(new InputStreamReader(input, "UTF-8")));