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

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


The following commit(s) were added to refs/heads/master by this push:
     new 804c5da2c cosmetics
804c5da2c is described below

commit 804c5da2cf3f1e946b8528f522d12e1a6ae23c29
Author: Thomas Andraschko <[email protected]>
AuthorDate: Thu Mar 30 15:15:31 2023 +0200

    cosmetics
---
 .../java/org/apache/deltaspike/proxy/api/DeltaSpikeProxyFactory.java  | 4 ++--
 .../apache/deltaspike/proxy/spi/DeltaSpikeProxyClassGenerator.java    | 2 +-
 deltaspike/parent/pom.xml                                             | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/api/DeltaSpikeProxyFactory.java
 
b/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/api/DeltaSpikeProxyFactory.java
index d85f2102b..96e64f6bb 100644
--- 
a/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/api/DeltaSpikeProxyFactory.java
+++ 
b/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/api/DeltaSpikeProxyFactory.java
@@ -190,7 +190,7 @@ public abstract class DeltaSpikeProxyFactory
     
     protected ArrayList<Method> collectAllMethods(Class<?> clazz)
     {
-        ArrayList<Method> methods = new ArrayList<Method>();
+        ArrayList<Method> methods = new ArrayList<>();
         Set<Method> abstractMethodLeaves = new HashSet<>();
         for (Method method : clazz.getMethods())
         {
@@ -269,7 +269,7 @@ public abstract class DeltaSpikeProxyFactory
     
     protected ArrayList<Method> filterInterceptMethods(Class<?> targetClass, 
ArrayList<Method> allMethods)
     {
-        ArrayList<Method> methods = new ArrayList<Method>();
+        ArrayList<Method> methods = new ArrayList<>();
         
         Iterator<Method> it = allMethods.iterator();
         while (it.hasNext())
diff --git 
a/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/spi/DeltaSpikeProxyClassGenerator.java
 
b/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/spi/DeltaSpikeProxyClassGenerator.java
index cbef5dfc5..e0fb2a892 100644
--- 
a/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/spi/DeltaSpikeProxyClassGenerator.java
+++ 
b/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/spi/DeltaSpikeProxyClassGenerator.java
@@ -33,7 +33,7 @@ public interface DeltaSpikeProxyClassGenerator
      *                                  We generate them with the same name as 
the original method
      *                                  and append the suffix.
      * @param additionalInterfaces Additional interfaces which should be 
implemented.
-     *                             Please note that you must also pass new 
methods via <c>delegateMethods</c>.
+     *                             Please note that you must also pass new 
methods via <code>delegateMethods</code>.
      * @param delegateMethods Methods which should be delegated to the
      *                        {@link 
DeltaSpikeProxy#getDelegateInvocationHandler()}
      *                        instead of invoking the original method.
diff --git a/deltaspike/parent/pom.xml b/deltaspike/parent/pom.xml
index d23f38c7d..148de5f13 100644
--- a/deltaspike/parent/pom.xml
+++ b/deltaspike/parent/pom.xml
@@ -72,7 +72,7 @@
         <tomcat.version>10.1.5</tomcat.version>
 
         <!-- used for some bytecode proxy stuff. Shaded in -->
-        <asm.version>9.4</asm.version>
+        <asm.version>9.5</asm.version>
 
 
         <maven.surefire.plugin.version>3.0.0-M4</maven.surefire.plugin.version>

Reply via email to