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-proxy.git
The following commit(s) were added to refs/heads/master by this push:
new c936560 Use HTTPS in URL
c936560 is described below
commit c9365603a1350f475fdc9d1f97f526088d42a3f7
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 2 11:45:34 2025 -0500
Use HTTPS in URL
---
core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java | 2 +-
.../java/org/apache/commons/proxy2/invoker/DuckTypingInvoker.java | 2 +-
.../org/apache/commons/proxy2/javassist/JavassistInvocation.java | 7 ++++---
3 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java
b/core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java
index fe9259e..4d3d71c 100644
--- a/core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java
+++ b/core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java
@@ -82,7 +82,7 @@ public final class ProxyUtils
* is maintained.
* </p>
* <p/>
- * <b>Note</b>: Implementation of this method was "borrowed" from <a
href="http://commons.apache.org/lang/">Apache
+ * <b>Note</b>: Implementation of this method was "borrowed" from <a
href="https://commons.apache.org/lang/">Apache
* Commons Lang</a> to avoid a dependency.
* </p>
*
diff --git
a/core/src/main/java/org/apache/commons/proxy2/invoker/DuckTypingInvoker.java
b/core/src/main/java/org/apache/commons/proxy2/invoker/DuckTypingInvoker.java
index c7a2236..6e8fef3 100644
---
a/core/src/main/java/org/apache/commons/proxy2/invoker/DuckTypingInvoker.java
+++
b/core/src/main/java/org/apache/commons/proxy2/invoker/DuckTypingInvoker.java
@@ -23,7 +23,7 @@ import org.apache.commons.proxy2.Invoker;
import org.apache.commons.proxy2.ObjectProvider;
/**
- * An invoker which supports <a
href="http://en.wikipedia.org/wiki/Duck_typing">"duck typing"</a>,
meaning
+ * An invoker which supports <a
href="https://en.wikipedia.org/wiki/Duck_typing">"duck typing"</a>,
meaning
* that it finds a matching method on the object returned from the target
provider and invokes it. This class is useful
* for adapting an existing class to an interface it does not implement.
* <p>
diff --git
a/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistInvocation.java
b/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistInvocation.java
index b30ea50..49aea62 100644
---
a/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistInvocation.java
+++
b/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistInvocation.java
@@ -34,9 +34,10 @@ import org.apache.commons.proxy2.Invocation;
import org.apache.commons.proxy2.ProxyUtils;
/**
- * A <a href="http://www.jboss.org/products/javassist">Javassist</a>-based
{@link Invocation} implementation. This class
- * actually serves as the superclass for all <a
href="http://www.jboss.org/products/javassist">Javassist</a>-based
- * method invocations. Subclasses are dynamically created to deal with
specific interface methods (they're hard-wired).
+ * A <a href="https://www.jboss.org/products/javassist">Javassist</a>-based
{@link Invocation} implementation.
+ * This class actually serves as the superclass for all <a
href="https://www.jboss.org/products/javassist">
+ * Javassist</a>-based method invocations. Subclasses are dynamically created
to deal with specific interface
+ * methods (they're hard-wired).
*
* @since 1.0
*/