This is an automated email from the ASF dual-hosted git repository.
remm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/master by this push:
new 7774c42 Remove poller thread count methods marked for Tomcat 10
removal
7774c42 is described below
commit 7774c42054eeaa57881b6fa51fd6dbf0abb6a1b7
Author: remm <[email protected]>
AuthorDate: Tue Jan 14 15:40:51 2020 +0100
Remove poller thread count methods marked for Tomcat 10 removal
---
java/org/apache/tomcat/util/net/NioEndpoint.java | 19 -------------------
1 file changed, 19 deletions(-)
diff --git a/java/org/apache/tomcat/util/net/NioEndpoint.java
b/java/org/apache/tomcat/util/net/NioEndpoint.java
index 6a2a5db..d111b7c 100644
--- a/java/org/apache/tomcat/util/net/NioEndpoint.java
+++ b/java/org/apache/tomcat/util/net/NioEndpoint.java
@@ -120,25 +120,6 @@ public class NioEndpoint extends
AbstractJsseEndpoint<NioChannel,SocketChannel>
public int getPollerThreadPriority() { return pollerThreadPriority; }
- /**
- * NO-OP.
- *
- * @param pollerThreadCount Unused
- *
- * @deprecated Will be removed in Tomcat 10.
- */
- @Deprecated
- public void setPollerThreadCount(int pollerThreadCount) { }
- /**
- * Always returns 1.
- *
- * @return Always 1.
- *
- * @deprecated Will be removed in Tomcat 10.
- */
- @Deprecated
- public int getPollerThreadCount() { return 1; }
-
private long selectorTimeout = 1000;
public void setSelectorTimeout(long timeout) { this.selectorTimeout =
timeout;}
public long getSelectorTimeout() { return this.selectorTimeout; }
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]