From 75ffd1b01741cd61ba1e97f6f760512959866438 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 15 Jun 2015 11:19:47 -0700 Subject: [PATCH] Polish --- .../web/MultipartProperties.java | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/MultipartProperties.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/MultipartProperties.java index b1bbd6d4b9..eba3f97821 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/MultipartProperties.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/MultipartProperties.java @@ -86,32 +86,32 @@ public class MultipartProperties { this.enabled = enabled; } - public String getMaxFileSize() { - return this.maxFileSize; - } - - public String getMaxRequestSize() { - return this.maxRequestSize; - } - - public String getFileSizeThreshold() { - return this.fileSizeThreshold; - } - public String getLocation() { return this.location; } + public void setLocation(String location) { + this.location = location; + } + + public String getMaxFileSize() { + return this.maxFileSize; + } + public void setMaxFileSize(String maxFileSize) { this.maxFileSize = maxFileSize; } + public String getMaxRequestSize() { + return this.maxRequestSize; + } + public void setMaxRequestSize(String maxRequestSize) { this.maxRequestSize = maxRequestSize; } - public void setLocation(String location) { - this.location = location; + public String getFileSizeThreshold() { + return this.fileSizeThreshold; } public void setFileSizeThreshold(String fileSizeThreshold) {