You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/03/25 13:57:43 UTC

[commons-jexl] branch master updated (64ce42ce -> 3940bef1)

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

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


    from 64ce42ce Merge pull request #170 from apache/dependabot/github_actions/actions/checkout-3.5.0
     new 327d7e45 Javadoc/Comments: Remove extra "whitespace"
     new 3940bef1 Fix Javadoc

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/main/java/org/apache/commons/jexl3/JexlBuilder.java       |  1 -
 .../jexl3/internal/introspection/PermissionsParser.java       | 11 ++++++++---
 src/test/java/org/apache/commons/jexl3/parser/ParserTest.java |  1 -
 .../commons/jexl3/scripting/JexlScriptEngineOptionalTest.java |  1 -
 .../apache/commons/jexl3/scripting/JexlScriptEngineTest.java  |  1 -
 5 files changed, 8 insertions(+), 7 deletions(-)


[commons-jexl] 02/02: Fix Javadoc

Posted by gg...@apache.org.
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

commit 3940bef1eac4ab9948e08b10f080cac08b2d25f5
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Mar 25 09:57:38 2023 -0400

    Fix Javadoc
---
 .../jexl3/internal/introspection/PermissionsParser.java        | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/jexl3/internal/introspection/PermissionsParser.java b/src/main/java/org/apache/commons/jexl3/internal/introspection/PermissionsParser.java
index a558b664..d17dfbf5 100644
--- a/src/main/java/org/apache/commons/jexl3/internal/introspection/PermissionsParser.java
+++ b/src/main/java/org/apache/commons/jexl3/internal/introspection/PermissionsParser.java
@@ -25,9 +25,14 @@ import java.util.concurrent.ConcurrentHashMap;
 /**
  * A crude parser to configure permissions akin to NoJexl annotations.
  * The syntax recognizes 2 types of permissions:
- * - restricting access to packages, classes (and inner classes), methods and fields
- * - allowing access to a wildcard restricted set of packages
+ * <ul>
+ * <li>restricting access to packages, classes (and inner classes), methods and fields</li>
+ * <li>allowing access to a wildcard restricted set of packages</li>
+ * </ul>
+ * <p>
  *  Example:
+ * </p>
+ * <pre>
  *  my.allowed.packages.*
  *  another.allowed.package.*
  *  # nojexl like restrictions
@@ -44,6 +49,7 @@ import java.util.concurrent.ConcurrentHashMap;
  *     field; # field
  *   } # end class0
  * } # end package my.package
+ * </pre>
  */
 public class PermissionsParser {
     /** The source. */


[commons-jexl] 01/02: Javadoc/Comments: Remove extra "whitespace"

Posted by gg...@apache.org.
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

commit 327d7e4518eeaaab9b7cc352aa854bcaa87eb64e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Mar 25 09:56:33 2023 -0400

    Javadoc/Comments: Remove extra "whitespace"
---
 src/main/java/org/apache/commons/jexl3/JexlBuilder.java                  | 1 -
 .../apache/commons/jexl3/internal/introspection/PermissionsParser.java   | 1 -
 src/test/java/org/apache/commons/jexl3/parser/ParserTest.java            | 1 -
 .../org/apache/commons/jexl3/scripting/JexlScriptEngineOptionalTest.java | 1 -
 .../java/org/apache/commons/jexl3/scripting/JexlScriptEngineTest.java    | 1 -
 5 files changed, 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/jexl3/JexlBuilder.java b/src/main/java/org/apache/commons/jexl3/JexlBuilder.java
index 165ca210..2a7013a0 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlBuilder.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlBuilder.java
@@ -78,7 +78,6 @@ import java.nio.charset.Charset;
  * </p>
  * </li>
  * </ul>
- *
  */
 public class JexlBuilder {
     /**
diff --git a/src/main/java/org/apache/commons/jexl3/internal/introspection/PermissionsParser.java b/src/main/java/org/apache/commons/jexl3/internal/introspection/PermissionsParser.java
index 38c657c1..a558b664 100644
--- a/src/main/java/org/apache/commons/jexl3/internal/introspection/PermissionsParser.java
+++ b/src/main/java/org/apache/commons/jexl3/internal/introspection/PermissionsParser.java
@@ -44,7 +44,6 @@ import java.util.concurrent.ConcurrentHashMap;
  *     field; # field
  *   } # end class0
  * } # end package my.package
- *
  */
 public class PermissionsParser {
     /** The source. */
diff --git a/src/test/java/org/apache/commons/jexl3/parser/ParserTest.java b/src/test/java/org/apache/commons/jexl3/parser/ParserTest.java
index 3997d2f4..be5928e2 100644
--- a/src/test/java/org/apache/commons/jexl3/parser/ParserTest.java
+++ b/src/test/java/org/apache/commons/jexl3/parser/ParserTest.java
@@ -23,7 +23,6 @@ import org.junit.Test;
 
 /**
  * @since 1.0
- *
  */
 public class ParserTest {
     static final JexlFeatures FEATURES = new JexlFeatures();
diff --git a/src/test/java/org/apache/commons/jexl3/scripting/JexlScriptEngineOptionalTest.java b/src/test/java/org/apache/commons/jexl3/scripting/JexlScriptEngineOptionalTest.java
index 1680b81d..de9f7878 100644
--- a/src/test/java/org/apache/commons/jexl3/scripting/JexlScriptEngineOptionalTest.java
+++ b/src/test/java/org/apache/commons/jexl3/scripting/JexlScriptEngineOptionalTest.java
@@ -13,7 +13,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- *
  */
 
 package org.apache.commons.jexl3.scripting;
diff --git a/src/test/java/org/apache/commons/jexl3/scripting/JexlScriptEngineTest.java b/src/test/java/org/apache/commons/jexl3/scripting/JexlScriptEngineTest.java
index 9a38936c..d329dee2 100644
--- a/src/test/java/org/apache/commons/jexl3/scripting/JexlScriptEngineTest.java
+++ b/src/test/java/org/apache/commons/jexl3/scripting/JexlScriptEngineTest.java
@@ -13,7 +13,6 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- *
  */
 
 package org.apache.commons.jexl3.scripting;