[ 
https://issues.apache.org/jira/browse/CASSANDRA-18395?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17710251#comment-17710251
 ] 

Ekaterina Dimitrova commented on CASSANDRA-18395:
-------------------------------------------------

Committed to [https://github.com/apache/cassandra]

   [99b618fec1..ca6450bda4  trunk -> 
trunk|https://github.com/apache/cassandra/commit/ca6450bda4136f3c16992c807f510520580a60cb]

 

Thanks!

> Rename internal state() method in AbstractFuture to not conflict with Java 19 
> changes
> -------------------------------------------------------------------------------------
>
>                 Key: CASSANDRA-18395
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-18395
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Build
>            Reporter: Sylwester Lachiewicz
>            Assignee: Sylwester Lachiewicz
>            Priority: Normal
>             Fix For: 6.x
>
>
> From Java 19 we have new method Future.state and it conflicts with our 
> private method. Fix bellow. 
> [https://download.java.net/java/early_access/jdk20/docs/api/java.base/java/util/concurrent/Future.html#state()]
>  
> {code:java}
> +++ b/src/java/org/apache/cassandra/utils/concurrent/AbstractFuture.java
> @@ -494,11 +494,11 @@ public abstract class AbstractFuture<V> implements 
> Future<V>
>      public String toString()
>      {
>          String description = description();
> -        String state = state();
> +        String state = stateInfo();
>          return description == null ? state : (state + ' ' + description);
>      }
>  
> -    private String state()
> +    private String stateInfo()
>      {
>          Object result = this.result;
>          if (isSuccess(result)){code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to