File tree 1 file changed +3
-3
lines changed
spring-web/src/main/java/org/springframework/http/codec/multipart
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ public class SynchronossPartHttpMessageReader extends LoggingCodecSupport implem
88
88
89
89
private long maxDiskUsagePerPart = -1 ;
90
90
91
- private long maxParts = -1 ;
91
+ private int maxParts = -1 ;
92
92
93
93
94
94
/**
@@ -138,15 +138,15 @@ public long getMaxDiskUsagePerPart() {
138
138
* Specify the maximum number of parts allowed in a given multipart request.
139
139
* @since 5.1.11
140
140
*/
141
- public void setMaxParts (long maxParts ) {
141
+ public void setMaxParts (int maxParts ) {
142
142
this .maxParts = maxParts ;
143
143
}
144
144
145
145
/**
146
146
* Return the {@link #setMaxParts configured} limit on the number of parts.
147
147
* @since 5.1.11
148
148
*/
149
- public long getMaxParts () {
149
+ public int getMaxParts () {
150
150
return this .maxParts ;
151
151
}
152
152
You can’t perform that action at this time.
0 commit comments