You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by he...@apache.org on 2020/05/28 14:25:09 UTC

[commons-jexl] 02/03: Java8 required in release notes; Javadoc nitpick

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

henrib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git

commit 0e119f86855947504b00835fc6dc866d150047f8
Author: henrib <he...@apache.org>
AuthorDate: Tue May 26 10:54:43 2020 +0200

    Java8 required in release notes;
    Javadoc nitpick
---
 RELEASE-NOTES.txt                                                       | 2 +-
 .../commons/jexl3/internal/introspection/PropertySetExecutor.java       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index d6d3829..2428a98 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -27,7 +27,7 @@ Version 3.2 is a minor release.
 
 Compatibility with previous releases
 ====================================
-Version 3.2 is binary compatible with 3.1.
+Version 3.2 is binary compatible with 3.1. However, JEXL now requires Java 8.
 
 Unfortunately, it is not strictly source compatible. This release does break source compatibility by adding methods to existing
 interfaces and an abstract method to an abstract class. However, since these interfaces and class are not expected to be implemented
diff --git a/src/main/java/org/apache/commons/jexl3/internal/introspection/PropertySetExecutor.java b/src/main/java/org/apache/commons/jexl3/internal/introspection/PropertySetExecutor.java
index 1f7e8f1..f8d2004 100644
--- a/src/main/java/org/apache/commons/jexl3/internal/introspection/PropertySetExecutor.java
+++ b/src/main/java/org/apache/commons/jexl3/internal/introspection/PropertySetExecutor.java
@@ -115,7 +115,7 @@ public class PropertySetExecutor extends AbstractExecutor.Set {
     }
 
     /**
-     * Discovers the method for a {@link PropertySet}.
+     * Discovers the method for a {@link org.apache.commons.jexl3.introspection.JexlPropertySet}.
      * <p>The method to be found should be named "set{P,p}property.
      * As a special case, any empty array will try to find a valid array-setting non-ambiguous method.
      *