Use int for maxParts instead of long

This commit is contained in:
Rossen Stoyanchev 2019-10-31 13:54:00 +00:00
parent 3691c187ef
commit fd9678833f
1 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ public class SynchronossPartHttpMessageReader extends LoggingCodecSupport implem
private long maxDiskUsagePerPart = -1;
private long maxParts = -1;
private int maxParts = -1;
/**
@ -138,7 +138,7 @@ public class SynchronossPartHttpMessageReader extends LoggingCodecSupport implem
* Specify the maximum number of parts allowed in a given multipart request.
* @since 5.1.11
*/
public void setMaxParts(long maxParts) {
public void setMaxParts(int maxParts) {
this.maxParts = maxParts;
}
@ -146,7 +146,7 @@ public class SynchronossPartHttpMessageReader extends LoggingCodecSupport implem
* Return the {@link #setMaxParts configured} limit on the number of parts.
* @since 5.1.11
*/
public long getMaxParts() {
public int getMaxParts() {
return this.maxParts;
}