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

commit 2073350aefedb7593619e6455e9bde16a94e6920
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Mar 19 15:48:46 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../apache/commons/pool2/proxy/package-info.java   | 32 +++++++++++++++++++
 .../org/apache/commons/pool2/proxy/package.html    | 37 ----------------------
 2 files changed, 32 insertions(+), 37 deletions(-)

diff --git a/src/main/java/org/apache/commons/pool2/proxy/package-info.java 
b/src/main/java/org/apache/commons/pool2/proxy/package-info.java
new file mode 100644
index 00000000..75cfdc1b
--- /dev/null
+++ b/src/main/java/org/apache/commons/pool2/proxy/package-info.java
@@ -0,0 +1,32 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.
+ */
+
+/**
+ * Object pooling proxy implementation.
+ * <p>
+ * The <code>org.apache.commons.pool2.proxy</code> package defines a
+ * object pool that wraps all objects returned to clients. This allows it
+ * to disable those proxies when the objects are returned thereby enabling
+ * the continued use of those objects by clients to be detected..
+ * </p>
+ * <p>
+ * Support is provided for <code>java.lang.reflect.Proxy</code> and for
+ * <code>net.sf.cglib.proxy</code> based proxies. The latter, requires the
+ * additional of the optional Code Generation Library (GCLib).
+ * </p>
+ */
+package org.apache.commons.pool2.proxy;
diff --git a/src/main/java/org/apache/commons/pool2/proxy/package.html 
b/src/main/java/org/apache/commons/pool2/proxy/package.html
deleted file mode 100644
index 5e4fbae0..00000000
--- a/src/main/java/org/apache/commons/pool2/proxy/package.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements.  See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- 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.
--->
-<html>
-   <head>
-      <title>Package Documentation for org.apache.commons.pool2.proxy</title>
-   </head>
-   <body>
-      <p>
-         Object pooling proxy implementation.
-      </p>
-      <p>
-         The <code>org.apache.commons.pool2.proxy</code> package defines a
-         object pool that wraps all objects returned to clients. This allows it
-         to disable those proxies when the objects are returned thereby 
enabling
-         the continued use of those objects by clients to be detected..
-      </p>
-      <p>
-         Support is provided for <code>java.lang.reflect.Proxy</code> and for
-         <code>net.sf.cglib.proxy</code> based proxies. The latter, requires 
the
-         additional of the optional Code Generation Library (GCLib).
-      </p>
-    </body>
-</html>

Reply via email to