Skip to content

Commit

Permalink
Spelling error in DefaultHttpExecutionStrategy (#2242)
Browse files Browse the repository at this point in the history
Motivation:
`OFFLOADD_ALL_REQRESP_EVENT_STRATEGY` is misspelled.
Modifications:
Change enum value to name to `OFFLOAD_ALL_REQRESP_EVENT_STRATEGY`. The
value is accessed only via builder using computation so there are no
direct references to the enum value.
Result:
Improved, consistent spelling
  • Loading branch information
bondolo authored Jun 7, 2022
1 parent 512558d commit 88bf117
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ enum DefaultHttpExecutionStrategy implements HttpExecutionStrategy {
OFFLOAD_SEND_EVENT_STRATEGY(EnumSet.of(OFFLOAD_SEND, OFFLOAD_EVENT)),
OFFLOAD_RECEIVE_META_AND_SEND_EVENT_STRATEGY(EnumSet.of(OFFLOAD_RECEIVE_META, OFFLOAD_SEND, OFFLOAD_EVENT)),
OFFLOAD_RECEIVE_DATA_AND_SEND_EVENT_STRATEGY(EnumSet.of(OFFLOAD_RECEIVE_DATA, OFFLOAD_SEND, OFFLOAD_EVENT)),
OFFLOADD_ALL_REQRESP_EVENT_STRATEGY(
OFFLOAD_ALL_REQRESP_EVENT_STRATEGY(
EnumSet.of(OFFLOAD_RECEIVE_META, OFFLOAD_RECEIVE_DATA, OFFLOAD_SEND, OFFLOAD_EVENT)),

OFFLOAD_CLOSE_STRATEGY(EnumSet.of(OFFLOAD_CLOSE)),
Expand Down

0 comments on commit 88bf117

Please sign in to comment.