Remove unnecessary array initialization

This commit is contained in:
stsypanov
2019-01-31 15:30:20 +02:00
committed by Rossen Stoyanchev
parent 7a77e83e10
commit af13580fd5

View File

@@ -852,9 +852,6 @@ public class MvcUriComponentsBuilder {
this.controllerType = controllerType;
this.method = method;
this.argumentValues = new Object[method.getParameterCount()];
for (int i = 0; i < this.argumentValues.length; i++) {
this.argumentValues[i] = null;
}
}
private static String getPath() {