Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions benchmarks/src/main/java/io/rsocket/core/RSocketPerf.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package io.rsocket.core;

import io.rsocket.AbstractRSocket;
import io.rsocket.Closeable;
import io.rsocket.Payload;
import io.rsocket.PayloadsMaxPerfSubscriber;
Expand Down Expand Up @@ -68,7 +67,7 @@ public void setUp() throws NoSuchFieldException, IllegalAccessException {
RSocketServer.create(
(setup, sendingSocket) ->
Mono.just(
new AbstractRSocket() {
new RSocket() {

@Override
public Mono<Void> fireAndForget(Payload payload) {
Expand Down
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