Skip to content

Commit

Permalink
removes deprecations dedicated for 1.1
Browse files Browse the repository at this point in the history
Signed-off-by: Oleh Dokuka <[email protected]>
  • Loading branch information
OlegDokuka committed Aug 3, 2020
1 parent cc16c0a commit 4a9baaf
Show file tree
Hide file tree
Showing 36 changed files with 122 additions and 1,855 deletions.
48 changes: 0 additions & 48 deletions rsocket-core/src/main/java/io/rsocket/AbstractRSocket.java

This file was deleted.

13 changes: 0 additions & 13 deletions rsocket-core/src/main/java/io/rsocket/ConnectionSetupPayload.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

import io.netty.buffer.ByteBuf;
import io.netty.util.AbstractReferenceCounted;
import io.rsocket.core.DefaultConnectionSetupPayload;
import reactor.util.annotation.Nullable;

/**
Expand Down Expand Up @@ -57,16 +56,4 @@ public ConnectionSetupPayload retain(int increment) {

@Override
public abstract ConnectionSetupPayload touch();

/**
* Create a {@code ConnectionSetupPayload}.
*
* @deprecated as of 1.0 RC7. Please, use {@link
* DefaultConnectionSetupPayload#DefaultConnectionSetupPayload(ByteBuf)
* DefaultConnectionSetupPayload} constructor.
*/
@Deprecated
public static ConnectionSetupPayload create(final ByteBuf setupFrame) {
return new DefaultConnectionSetupPayload(setupFrame);
}
}
Loading

0 comments on commit 4a9baaf

Please sign in to comment.