Skip to content

Commit

Permalink
CORE-15747 boolean not Boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
LWogan committed Aug 14, 2023
1 parent cf4ffc9 commit 0f203e2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public interface FlowMessaging {
*/
@Suspendable
@NotNull
FlowSession initiateFlow(@NotNull MemberX500Name x500Name, Boolean requireClose);
FlowSession initiateFlow(@NotNull MemberX500Name x500Name, boolean requireClose);

/**
* Creates a communication session with another member. Subsequently, you may send/receive using this session object.
Expand Down Expand Up @@ -147,7 +147,7 @@ public interface FlowMessaging {
*/
@Suspendable
@NotNull
FlowSession initiateFlow(@NotNull MemberX500Name x500Name, @NotNull Boolean requireClose, @NotNull FlowContextPropertiesBuilder flowContextPropertiesBuilder);
FlowSession initiateFlow(@NotNull MemberX500Name x500Name, boolean requireClose, @NotNull FlowContextPropertiesBuilder flowContextPropertiesBuilder);

/**
* Suspends until a message has been received for each session in the specified {@code sessions}.
Expand Down

0 comments on commit 0f203e2

Please sign in to comment.