Skip to content

Commit

Permalink
Use final parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory authored Sep 29, 2023
1 parent 8e4105b commit 8945f46
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class AttachmentDataSource implements DataSource
* @param is the InputStream
* @param type the MIME type
*/
public AttachmentDataSource(InputStream is, String type)
public AttachmentDataSource(final nputStream is, final String type)
{
this.is = is;
this.type = type;
Expand All @@ -55,7 +55,7 @@ public AttachmentDataSource(InputStream is, String type)
* @param type
* @param name
*/
public AttachmentDataSource(InputStream is, String type, String name)
public AttachmentDataSource(final InputStream is, final String type, final String name)
{
this.is = is;
this.type = type;
Expand Down

0 comments on commit 8945f46

Please sign in to comment.