Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restore API/ABI compatibility with version 0.42.37 #2729

Merged
merged 1 commit into from
Oct 11, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,9 @@ public class ProxyResponseException extends ProxyConnectResponseException implem
public HttpResponseStatus status() {
return response().status();
}

@Override
public String toString() {
return super.toString();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public interface ConnectionObserver {
* @deprecated Use {@link #onTransportHandshakeComplete(ConnectionInfo)}
*/
@Deprecated
default void onTransportHandshakeComplete() {
default void onTransportHandshakeComplete() { // FIXME: 0.43 - remove deprecated method
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ public void onDataWrite(final int size) {
public void onFlush() {
}

@Override
@SuppressWarnings("deprecation")
public void onTransportHandshakeComplete() {
}

@Override
public void onTransportHandshakeComplete(final ConnectionInfo info) {
}
Expand Down