Skip to content

Commit

Permalink
Normalize names
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jul 8, 2023
1 parent 38a2d06 commit 7f66fb1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ public MockPortletActionRequest(final byte[] requestData, final String contentTy
this(new ByteArrayInputStream(requestData), requestData.length, contentType);
}

public MockPortletActionRequest(final ByteArrayInputStream byteArrayInputStream, final int requestLength, final String contentType) {
this.requestData = byteArrayInputStream;
length = requestLength;
public MockPortletActionRequest(final ByteArrayInputStream requestData, final int length, final String contentType) {
this.requestData = requestData;
this.length = length;
this.contentType = contentType;
attributes.put(AbstractFileUpload.CONTENT_TYPE, contentType);
this.attributes.put(AbstractFileUpload.CONTENT_TYPE, contentType);
}

@Override
Expand Down

0 comments on commit 7f66fb1

Please sign in to comment.