This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git

commit 6f68fbdefad521741b37304cfdfc6d8646cf1839
Author: Stefan Bodewig <[email protected]>
AuthorDate: Sun May 14 11:25:01 2023 +0200

    whitespace
---
 .../apache/tools/ant/taskdefs/optional/EchoProperties.java   | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/src/main/org/apache/tools/ant/taskdefs/optional/EchoProperties.java 
b/src/main/org/apache/tools/ant/taskdefs/optional/EchoProperties.java
index 2eb91820d..1ca9441a5 100644
--- a/src/main/org/apache/tools/ant/taskdefs/optional/EchoProperties.java
+++ b/src/main/org/apache/tools/ant/taskdefs/optional/EchoProperties.java
@@ -359,12 +359,12 @@ public class EchoProperties extends Task {
 
             @Override
             public Set<Map.Entry<Object, Object>> entrySet() {
-                    Set<Map.Entry<Object, Object>> t =
-                        new TreeSet<>(Comparator.comparing(
-                            ((Function<Map.Entry<Object, Object>, Object>) 
Map.Entry::getKey)
-                                .andThen(Object::toString)));
-                    t.addAll(super.entrySet());
-                    return t;
+                Set<Map.Entry<Object, Object>> t =
+                    new TreeSet<>(Comparator.comparing(
+                        ((Function<Map.Entry<Object, Object>, Object>) 
Map.Entry::getKey)
+                            .andThen(Object::toString)));
+                t.addAll(super.entrySet());
+                return t;
             }
         };
         allProps.forEach((k, v) -> props.put(String.valueOf(k), 
String.valueOf(v)));

Reply via email to