Skip to content

Commit 0154398

Browse files
authored
Fix Checkstyle error, rename a argument
1 parent 03c311e commit 0154398

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/viewfs/ChRootedFileSystem.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ public Path getWorkingDirectory() {
174174
}
175175

176176
@Override
177-
public void setWorkingDirectory(final Path new_dir) {
178-
workingDir = new_dir.isAbsolute() ? new_dir : new Path(workingDir, new_dir);
177+
public void setWorkingDirectory(final Path newDir) {
178+
workingDir = newDir.isAbsolute() ? newDir : new Path(workingDir, newDir);
179179
}
180180

181181
@Override

0 commit comments

Comments
 (0)