Skip to content

Commit

Permalink
remove verboseResponses condition
Browse files Browse the repository at this point in the history
  • Loading branch information
ikhoon committed Nov 22, 2024
1 parent 2d0ed0c commit a233d61
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ public final class ResponseCompleteException extends CancellationException {
* Returns the singleton {@link ResponseCompleteException}.
*/
public static ResponseCompleteException get() {
if (Flags.verboseResponses() &&
Flags.verboseExceptionSampler().isSampled(ResponseCompleteException.class)) {
if (Flags.verboseExceptionSampler().isSampled(ResponseCompleteException.class)) {
return new ResponseCompleteException();
} else {
return INSTANCE;
Expand Down

0 comments on commit a233d61

Please sign in to comment.