Use int for maxParts instead of long

This commit is contained in:
Rossen Stoyanchev
2019-10-31 14:16:48 +00:00
parent 0f2efdbe97
commit e731a0a164

View File

@@ -88,7 +88,7 @@ public class SynchronossPartHttpMessageReader extends LoggingCodecSupport implem
private long maxDiskUsagePerPart = -1;
private long maxParts = -1;
private int maxParts = -1;
/**
@@ -139,7 +139,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;
}
@@ -147,7 +147,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;
}