This is an automated email from the ASF dual-hosted git repository. ebourg 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 058bedec Remove the fully qualified name when using java.util.Base64 058bedec is described below commit 058bedecd7e7683d34bc73b80100fef8c7e95c25 Author: Emmanuel Bourg <ebo...@apache.org> AuthorDate: Fri Oct 25 12:13:28 2024 +0200 Remove the fully qualified name when using java.util.Base64 --- .../commons/configuration2/plist/XMLPropertyListConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java b/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java index 492019c9..9d07a0d6 100644 --- a/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java +++ b/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java @@ -202,7 +202,7 @@ public class XMLPropertyListConfiguration extends BaseHierarchicalConfiguration * @param value the value to be added */ public void addDataValue(final String value) { - addValue(java.util.Base64.getMimeDecoder().decode(value.getBytes(DATA_ENCODING))); + addValue(Base64.getMimeDecoder().decode(value.getBytes(DATA_ENCODING))); } /**