Skip to content

Commit 1d20cf1

Browse files
author
Dominik Diedrich
committed
Fixed more style checks
1 parent ab0417f commit 1d20cf1

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/constants/ConfigConstants.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,15 @@
1818

1919
package org.apache.hadoop.constants;
2020

21-
public interface ConfigConstants {
21+
public final class ConfigConstants {
22+
23+
private ConfigConstants() {}
24+
2225
/**
2326
* System property name for the avro dependency.
2427
* This property is used to configure trusted packages,
2528
* which the avro dependency can use for serialization.
2629
*/
27-
static final String CONFIG_AVRO_SERIALIZABLE_PACKAGES =
28-
"org.apache.avro.SERIALIZABLE_PACKAGES";
30+
public static final String CONFIG_AVRO_SERIALIZABLE_PACKAGES =
31+
"org.apache.avro.SERIALIZABLE_PACKAGES";
2932
}

0 commit comments

Comments
 (0)