Skip to content

Commit d82fa09

Browse files
committed
HADOOP-18508. checkstyle complaining about TestFSMainOperationsLocalFileSystem
I thought I'd already cleaned them, but yetus was still unhappy. cleaned up the test even more to see if that helps Change-Id: If4096e70e7921db8790fb56351077840cb4317d9
1 parent 69e1242 commit d82fa09

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestFSMainOperationsLocalFileSystem.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,13 @@
2121
import java.io.IOException;
2222

2323
import org.apache.hadoop.conf.Configuration;
24-
import org.junit.After;
25-
import org.junit.Before;
2624

2725
public class TestFSMainOperationsLocalFileSystem extends FSMainOperationsBaseTest {
2826

2927
@Override
3028
protected FileSystem createFileSystem() throws IOException {
3129
return FileSystem.getLocal(new Configuration());
3230
}
33-
34-
@Override
35-
@Before
36-
public void setUp() throws Exception {
37-
super.setUp();
38-
}
3931

4032
static Path wd = null;
4133
@Override
@@ -44,11 +36,5 @@ protected Path getDefaultWorkingDirectory() throws IOException {
4436
wd = FileSystem.getLocal(new Configuration()).getWorkingDirectory();
4537
return wd;
4638
}
47-
48-
@Override
49-
@After
50-
public void tearDown() throws Exception {
51-
super.tearDown();
52-
}
5339

5440
}

0 commit comments

Comments
 (0)