Skip to content

Commit 23dd123

Browse files
committed
Fix checkstyle.
1 parent eb90719 commit 23dd123

File tree

1 file changed

+2
-1
lines changed
  • hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security

1 file changed

+2
-1
lines changed

hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/SaslConstants.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ public class SaslConstants {
4545
if (mechanism == null) {
4646
// conf
4747
final Configuration conf = new Configuration();
48-
mechanism = conf.get(HADOOP_SECURITY_SASL_MECHANISM_KEY, HADOOP_SECURITY_SASL_MECHANISM_DEFAULT);
48+
mechanism = conf.get(HADOOP_SECURITY_SASL_MECHANISM_KEY,
49+
HADOOP_SECURITY_SASL_MECHANISM_DEFAULT);
4950
}
5051

5152
SASL_MECHANISM = mechanism != null? mechanism : HADOOP_SECURITY_SASL_MECHANISM_DEFAULT;

0 commit comments

Comments
 (0)