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-jexl.git
The following commit(s) were added to refs/heads/master by this push: new 1d818dd Inline Collections.sort(Comparator). 1d818dd is described below commit 1d818ddd10e2eb0d6207293a4efb8f5dd8717c38 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Feb 13 11:32:49 2022 -0500 Inline Collections.sort(Comparator). --- src/test/java/org/apache/commons/jexl3/VarTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/jexl3/VarTest.java b/src/test/java/org/apache/commons/jexl3/VarTest.java index 19a750a..796b2b9 100644 --- a/src/test/java/org/apache/commons/jexl3/VarTest.java +++ b/src/test/java/org/apache/commons/jexl3/VarTest.java @@ -206,7 +206,7 @@ public class VarTest extends JexlTestCase { } ls.add(strb.toString()); } - Collections.sort(ls); + ls.sort(null); return ls; }