Skip to content

Commit

Permalink
CORE-18320 Class FlowSessionConfiguration and related Builder made final
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrkic-r3 committed Dec 19, 2023
1 parent 30778bc commit 061c57c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* Flow session configuration. Instances should be created using {@link Builder}.
*/
public class FlowSessionConfiguration {
public final class FlowSessionConfiguration {
private final boolean requireClose;
private final Duration timeout;

Expand All @@ -22,7 +22,7 @@ public Duration getTimeout() {
return timeout;
}

public static class Builder {
public static final class Builder {
private boolean requireClose = true;
private Duration timeout;

Expand Down

0 comments on commit 061c57c

Please sign in to comment.