keith-turner commented on code in PR #3090:
URL: https://github.com/apache/accumulo/pull/3090#discussion_r1029101237
##########
core/src/main/java/org/apache/accumulo/core/data/Mutation.java:
##########
@@ -1507,6 +1507,7 @@ public int size() {
* the peer to add
* @since 1.7.0
*/
+ @Deprecated(since = "2.1.1")
Review Comment:
Like you said @ctubbsii its about communication, so would the following
work? Is it ok to use the deprecation javadoc tag and the annotation? If not
could just put the explanation in the javadoc w/o the deprecation tag.
```java
* @deprecated since 2.1.1 This should have been deprecated in 2.1.0 in
order to strictly follow semver. However it was missed and it must be removed
in 3.0.0 if all of replication is removed.
*/
@Deprecated(since = "2.1.1")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]