[
https://issues.apache.org/jira/browse/CASSANDRA-18395?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17708542#comment-17708542
]
Sylwester Lachiewicz commented on CASSANDRA-18395:
--------------------------------------------------
hi Yes, this is not blocker for any Java version - it's just simple internal
method so I dont think it;s worth to discuss or spent on this so much time.
> 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: [email protected]
For additional commands, e-mail: [email protected]