We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab0417f commit 1d20cf1Copy full SHA for 1d20cf1
hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/constants/ConfigConstants.java
@@ -18,12 +18,15 @@
18
19
package org.apache.hadoop.constants;
20
21
-public interface ConfigConstants {
+public final class ConfigConstants {
22
+
23
+ private ConfigConstants() {}
24
25
/**
26
* System property name for the avro dependency.
27
* This property is used to configure trusted packages,
28
* which the avro dependency can use for serialization.
29
*/
- static final String CONFIG_AVRO_SERIALIZABLE_PACKAGES =
- "org.apache.avro.SERIALIZABLE_PACKAGES";
30
+ public static final String CONFIG_AVRO_SERIALIZABLE_PACKAGES =
31
+ "org.apache.avro.SERIALIZABLE_PACKAGES";
32
}
0 commit comments