This is an automated email from the ASF dual-hosted git repository.
elecharny pushed a commit to branch 1.2.X
in repository https://gitbox.apache.org/repos/asf/mina-ftpserver.git
The following commit(s) were added to refs/heads/1.2.X by this push:
new b8116a35 Moved the constructor from protected to public
b8116a35 is described below
commit b8116a3561b48c6fb6fb48cddf86dbb7960c5d21
Author: emmanuel lecharny <[email protected]>
AuthorDate: Wed Jan 29 06:24:34 2025 +0100
Moved the constructor from protected to public
---
ftplet-api/src/main/java/org/apache/ftpserver/ftplet/DefaultFtplet.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/ftplet-api/src/main/java/org/apache/ftpserver/ftplet/DefaultFtplet.java
b/ftplet-api/src/main/java/org/apache/ftpserver/ftplet/DefaultFtplet.java
index 0d60a282..cf649204 100644
--- a/ftplet-api/src/main/java/org/apache/ftpserver/ftplet/DefaultFtplet.java
+++ b/ftplet-api/src/main/java/org/apache/ftpserver/ftplet/DefaultFtplet.java
@@ -32,7 +32,7 @@ public class DefaultFtplet implements Ftplet {
/**
* A default constructor that does nothing
*/
- protected DefaultFtplet() {
+ public DefaultFtplet() {
}
/**