You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by kr...@apache.org on 2022/11/11 17:02:10 UTC

[solr] branch branch_9x updated: SOLR-15861: Fix JSR-239 reference to JSR-236

This is an automated email from the ASF dual-hosted git repository.

krisden pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 33aafd0c73c SOLR-15861: Fix JSR-239 reference to JSR-236
33aafd0c73c is described below

commit 33aafd0c73cdf8bd1037ad369bd04e8e3f7289fb
Author: Kevin Risden <kr...@apache.org>
AuthorDate: Fri Nov 11 11:47:06 2022 -0500

    SOLR-15861: Fix JSR-239 reference to JSR-236
---
 solr/solrj/src/java/org/apache/solr/common/util/ExecutorUtil.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/solrj/src/java/org/apache/solr/common/util/ExecutorUtil.java b/solr/solrj/src/java/org/apache/solr/common/util/ExecutorUtil.java
index 5897aea85f8..1c8f5647e75 100644
--- a/solr/solrj/src/java/org/apache/solr/common/util/ExecutorUtil.java
+++ b/solr/solrj/src/java/org/apache/solr/common/util/ExecutorUtil.java
@@ -87,7 +87,7 @@ public class ExecutorUtil {
     try {
       return pool.isShutdown();
     } catch (IllegalStateException e) {
-      // JSR-239 ManagedExecutorService cannot query the lifecycle, so just return false
+      // JSR-236 ManagedExecutorService cannot query the lifecycle, so just return false
       return false;
     }
   }
@@ -96,7 +96,7 @@ public class ExecutorUtil {
     try {
       return pool.isTerminated();
     } catch (IllegalStateException e) {
-      // JSR-239 ManagedExecutorService cannot query the lifecycle, so just return false
+      // JSR-236 ManagedExecutorService cannot query the lifecycle, so just return false
       return false;
     }
   }