Skip to content

Commit

Permalink
remove inheritDoc tags that don't work with JDK21
Browse files Browse the repository at this point in the history
  • Loading branch information
idelpivnitskiy committed Dec 20, 2024
1 parent da746cd commit 3a27b66
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,12 @@
public interface HttpPayloadWriter<T> extends PayloadWriter<T>, TrailersHolder {

/**
* {@inheritDoc}
* <p>
* <b>Note:</b> modifying trailers after the payload writer is {@link #close() closed} is not allowed.
*/
@Override
HttpHeaders trailers();

/**
* {@inheritDoc}
* <p>
* <b>Note:</b> modifying trailers after the payload writer is {@link #close() closed} is not allowed.
*/
@Override
Expand All @@ -47,8 +43,6 @@ default HttpPayloadWriter<T> addTrailer(final CharSequence name, final CharSeque
}

/**
* {@inheritDoc}
* <p>
* <b>Note:</b> modifying trailers after the payload writer is {@link #close() closed} is not allowed.
*/
@Override
Expand All @@ -58,8 +52,6 @@ default HttpPayloadWriter<T> addTrailers(final HttpHeaders trailers) {
}

/**
* {@inheritDoc}
* <p>
* <b>Note:</b> modifying trailers after the payload writer is {@link #close() closed} is not allowed.
*/
@Override
Expand All @@ -69,8 +61,6 @@ default HttpPayloadWriter<T> setTrailer(final CharSequence name, final CharSeque
}

/**
* {@inheritDoc}
* <p>
* <b>Note:</b> modifying trailers after the payload writer is {@link #close() closed} is not allowed.
*/
@Override
Expand Down

0 comments on commit 3a27b66

Please sign in to comment.