Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Dargones committed Jul 29, 2024
1 parent ddfb365 commit 28bc05b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/acrostics/LanguageModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public LanguageModel(String filename) {
filename = filename + FILE_POSTFIX;
System.err.println("In constructor");
try {
Scanner sc = new Scanner(new File(filename), StandardCharsets.UTF_8);
Scanner sc = new Scanner(new File(filename));
System.err.println("Reading file: " + filename);
System.err.println("Reading file: " + new File(filename).getAbsolutePath());
while (sc.hasNextLine()) {
Expand Down

0 comments on commit 28bc05b

Please sign in to comment.