Skip to content

Commit

Permalink
HADOOP-15936. [JDK 11] MiniDFSClusterManager & MiniHadoopClusterManag…
Browse files Browse the repository at this point in the history
…er compilation fails due to the usage of '_' as identifier. Contributed by Zsolt Venczel.
  • Loading branch information
arp7 committed Nov 15, 2018
1 parent 460a94a commit 1e15c7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private void sleepForever() {
LOG.info("Cluster is no longer up, exiting");
return;
}
} catch (InterruptedException _) {
} catch (InterruptedException e) {
// nothing
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ private void sleepForever() {
while (true) {
try {
Thread.sleep(1000 * 60);
} catch (InterruptedException _) {
} catch (InterruptedException e) {
// nothing
}
}
Expand Down

0 comments on commit 1e15c7e

Please sign in to comment.