Skip to content

Commit

Permalink
Changing ExtensionActionRequest streaminput constructor to be public
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Palis <jpalis@amazon.com>
  • Loading branch information
joshpalis committed Jan 30, 2023
1 parent 3e3b155 commit 95bf5b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public ExtensionActionRequest(String action, byte[] requestBytes) {
* @param in bytes stream input used to de-serialize the message.
* @throws IOException when message de-serialization fails.
*/
ExtensionActionRequest(StreamInput in) throws IOException {
public ExtensionActionRequest(StreamInput in) throws IOException {
super(in);
action = in.readString();
requestBytes = in.readByteArray();
Expand Down

0 comments on commit 95bf5b8

Please sign in to comment.