Skip to content

Commit

Permalink
use iface instead
Browse files Browse the repository at this point in the history
  • Loading branch information
poison committed Dec 17, 2015
1 parent a624d09 commit ea85860
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
import com.google.common.collect.Sets;
import com.technofovea.hl2parse.vdf.VdfNode;
import com.technofovea.hl2parse.vdf.VdfRoot;
import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.Reader;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
Expand Down Expand Up @@ -177,7 +177,7 @@ public boolean apply(String input) {
}
if (commandLine.hasOption("R")) {
Path replacementFile=Paths.get(commandLine.getOptionValue("R"));
final BufferedReader replacementFileReader=Files.newBufferedReader(replacementFile, Charsets.UTF_8);
final Reader replacementFileReader=Files.newBufferedReader(replacementFile, Charsets.UTF_8);
try {
Properties replacementProperties=new Properties();
replacementProperties.load(replacementFileReader);
Expand Down

0 comments on commit ea85860

Please sign in to comment.