Remove inconsistent spaces

(cherry picked from commit fb898e1)
This commit is contained in:
Johnny Lim
2018-05-05 07:19:41 +02:00
committed by Juergen Hoeller
parent a39938d251
commit a0d37ac29e
14 changed files with 40 additions and 40 deletions

View File

@@ -260,7 +260,7 @@ public class MappingJackson2JsonView extends AbstractJackson2View {
}
if (jsonpFunction != null) {
generator.writeRaw("/**/");
generator.writeRaw(jsonpFunction + "(" );
generator.writeRaw(jsonpFunction + "(");
}
}

View File

@@ -354,7 +354,7 @@ public class RequestMappingInfoHandlerMappingTests {
urlPathHelper.setUrlDecode(false);
urlPathHelper.setRemoveSemicolonContent(false);
this.handlerMapping.setUrlPathHelper(urlPathHelper );
this.handlerMapping.setUrlPathHelper(urlPathHelper);
request = new MockHttpServletRequest();
handleMatch(request, "/path{filter}", "/path;mvar=a%2fb");
@@ -534,4 +534,4 @@ public class RequestMappingInfoHandlerMappingTests {
}
}
}
}