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-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
     new 2dfde238 Javadoc: Use an HTTPS URL
2dfde238 is described below

commit 2dfde238ade3e35c4a205ba7d84d138c951ec8d6
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jan 14 10:46:57 2024 -0500

    Javadoc: Use an HTTPS URL
---
 src/main/java/org/apache/commons/beanutils2/package-info.java  | 10 +++++-----
 .../commons/beanutils2/memoryleaktests/MemoryLeakTestCase.java |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/commons/beanutils2/package-info.java 
b/src/main/java/org/apache/commons/beanutils2/package-info.java
index cc64104c..54cc5827 100644
--- a/src/main/java/org/apache/commons/beanutils2/package-info.java
+++ b/src/main/java/org/apache/commons/beanutils2/package-info.java
@@ -81,7 +81,7 @@
  * <h3>1.1 Background</h3>
  *
  * <p>The <em>JavaBeans</em> name comes from a
- * <a href="http://java.sun.com/products/javabeans/";>Java API</a>
+ * <a href="https://java.sun.com/products/javabeans/";>Java API</a>
  * for a component architecture for the Java language.  Writing Java classes 
that
  * conform to the JavaBeans design patterns makes it easier for Java developers
  * to understand the functionality provided by your class, as well as allowing
@@ -89,7 +89,7 @@
  * learn about the properties and operations provided by your class, and 
present
  * them in a visually appealing manner in development tools.</p>
  *
- * <p>The <a 
href="http://java.sun.com/products/javabeans/docs/spec.html";>JavaBeans
+ * <p>The <a 
href="https://java.sun.com/products/javabeans/docs/spec.html";>JavaBeans
  * Specification</a> describes the complete set of characteristics that makes
  * an arbitrary Java class a JavaBean or not -- and you should consider reading
  * this document to be an important part of developing your Java programming
@@ -586,7 +586,7 @@
  * rows are being processed by your application.  This hinders the ability to 
use
  * {@code ResultSetDynaClass} as a means of communicating information from
  * the model layer to the view layer in a model-view-controller architecture
- * such as that provided by the <a href="http://struts.apache.org/";>Struts
+ * such as that provided by the <a href="https://struts.apache.org/";>Struts
  * Framework</a>, because there is no easy mechanism to assure that the result 
set
  * is finally closed (and the underlying {@code Connection} returned to its
  * connection pool, if you are using one).</p>
@@ -815,7 +815,7 @@
  * {@code javax.servlet.HttpServletRequest} received by a web application
  * into a set of corresponding property setter calls on an arbitrary JavaBean.
  * (This is one of the fundamental services provided by the
- * <a href="http://struts.apache.org/";>Struts Framework</a>, which uses
+ * <a href="https://struts.apache.org/";>Struts Framework</a>, which uses
  * <em>BeanUtils</em> internally to implement this functionality.)</p>
  *
  * <p>In an HTTP request, the set of included parameters is made available as a
@@ -1001,7 +1001,7 @@
  * <h3>Why Can't BeanUtils Find My Method?</h3>
  * <p>The <em>BeanUtils</em> package relies on <em>introspection</em> rather 
than
  * <em>reflection</em>. This means that it will find only
- * <a href='http://java.sun.com/products/javabeans'><em>JavaBean</em>
+ * <a href='https://java.sun.com/products/javabeans'><em>JavaBean</em>
  * compliant</a> properties.</p>
  * <p>There are some subtleties  of this specification that can catch out the 
unwary:</p>
  * <ul>
diff --git 
a/src/test/java/org/apache/commons/beanutils2/memoryleaktests/MemoryLeakTestCase.java
 
b/src/test/java/org/apache/commons/beanutils2/memoryleaktests/MemoryLeakTestCase.java
index b3120730..b52fecb8 100644
--- 
a/src/test/java/org/apache/commons/beanutils2/memoryleaktests/MemoryLeakTestCase.java
+++ 
b/src/test/java/org/apache/commons/beanutils2/memoryleaktests/MemoryLeakTestCase.java
@@ -155,7 +155,7 @@ public class MemoryLeakTestCase {
     /**
      * Produces a profiler report about where the leaks are.
      *
-     * This requires JBoss's profiler be installed, see: 
http://labs.jboss.com/jbossprofiler/
+     * This requires JBoss's profiler be installed, see: 
https://labs.jboss.com/jbossprofiler/
      *
      * @param className The name of the class to profile
      */

Reply via email to