Skip to content

Commit cb9186a

Browse files
committed
HADOOP-19427. Fix CheckStyle Issue.
1 parent efec60f commit cb9186a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hadoop-tools/hadoop-compat-bench/src/test/java/org/apache/hadoop/fs/compat/common/TestHdfsCompatInterfaceCoverage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ public void testFsCompatibility() {
3535
Set<String> publicMethods = getPublicInterfaces(FileSystem.class);
3636
Set<String> targets = getTargets(HdfsCompatBasics.class);
3737
for (String publicMethod : publicMethods) {
38-
assertTrue(
39-
targets.contains(publicMethod), "Method not tested: " + publicMethod);
38+
assertTrue(targets.contains(publicMethod),
39+
"Method not tested: " + publicMethod);
4040
}
4141
}
4242

0 commit comments

Comments
 (0)