Skip to content

Commit

Permalink
Attempt build without closing streams from processes.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Jul 8, 2024
1 parent 5ad487e commit 5d42918
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2410,7 +2410,7 @@ public int getOwnerIdOf(File file) {
try {
line = reader.readLine();
} finally {
reader.close();
//reader.close();
}
do {
try {
Expand Down Expand Up @@ -2493,7 +2493,7 @@ public int getOwnerIdOf(File file) {
output.append(line).append("\n");
}
} finally {
reader.close();
//reader.close();
}
do {
try {
Expand Down Expand Up @@ -2578,7 +2578,7 @@ public int getOwnerIdOf(File file) {
try {
line = reader.readLine();
} finally {
reader.close();
//reader.close();
}
do {
try {
Expand Down

0 comments on commit 5d42918

Please sign in to comment.