Skip to content

Commit

Permalink
[WFCORE-6945] Add missing since attribute to @deprecate annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
yersan authored Aug 21, 2024
1 parent b6df9bc commit a9aea36
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public interface AddResourceOperationStepHandlerDescriptor extends OperationStep
* @return a collection of resource paths
* @deprecated Superseded by {@link #getRequiredChildResources()}.
*/
@Deprecated(forRemoval = true)
@Deprecated(forRemoval = true, since = "26.0.0")
default Set<PathElement> getRequiredChildren() {
return this.getRequiredChildResources().keySet();
}
Expand All @@ -47,7 +47,7 @@ default Map<PathElement, ResourceRegistration> getRequiredChildResources() {
* @return a collection of resource paths
* @deprecated Superseded by {@link #getRequiredSingletonChildResources()
*/
@Deprecated(forRemoval = true)
@Deprecated(forRemoval = true, since = "26.0.0")
default Set<PathElement> getRequiredSingletonChildren() {
return this.getRequiredSingletonChildResources().keySet();
}
Expand Down

0 comments on commit a9aea36

Please sign in to comment.