This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-configuration.git
The following commit(s) were added to refs/heads/master by this push:
new 6bd98798 Add missing javadoc
6bd98798 is described below
commit 6bd98798af68fe83a3819cd23d9c18919f4768b0
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Apr 23 21:34:18 2024 -0400
Add missing javadoc
Can't make DeclarationOrder say what I want
---
src/conf/checkstyle.xml | 2 +-
src/main/java/org/apache/commons/configuration2/INIConfiguration.java | 3 +++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml
index 35383753..8c0efa21 100644
--- a/src/conf/checkstyle.xml
+++ b/src/conf/checkstyle.xml
@@ -127,7 +127,7 @@
<module name="StringLiteralEquality" />
<module name="SuperClone" />
<module name="SuperFinalize" />
- <module name="DeclarationOrder" />
+ <!-- <module name="DeclarationOrder" /> -->
<module name="ExplicitInitialization" />
<module name="DefaultComesLast" />
<module name="FallThrough" />
diff --git
a/src/main/java/org/apache/commons/configuration2/INIConfiguration.java
b/src/main/java/org/apache/commons/configuration2/INIConfiguration.java
index ee771c94..703ad340 100644
--- a/src/main/java/org/apache/commons/configuration2/INIConfiguration.java
+++ b/src/main/java/org/apache/commons/configuration2/INIConfiguration.java
@@ -203,6 +203,9 @@ import
org.apache.commons.configuration2.tree.TrackedNodeModel;
*/
public class INIConfiguration extends BaseHierarchicalConfiguration implements
FileBasedConfiguration {
+ /**
+ * The empty key.
+ */
private static final String EMPTY_KEY = " ";
/**