Skip to content

Commit ba95fa4

Browse files
committed
SeriesImportController.processImportSeriesForm(): rename argument.
No code changes.
1 parent 8a803cd commit ba95fa4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/ru/mystamps/web/controller/SeriesImportController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,17 +149,17 @@ public String processImportSeriesForm(
149149
BindingResult result,
150150
@CurrentUser Integer currentUserId,
151151
Locale userLocale,
152-
HttpServletResponse response)
152+
HttpServletResponse httpResponse)
153153
throws IOException {
154154

155155
if (requestId == null) {
156-
response.sendError(HttpServletResponse.SC_NOT_FOUND);
156+
httpResponse.sendError(HttpServletResponse.SC_NOT_FOUND);
157157
return null;
158158
}
159159

160160
ImportRequestDto request = seriesImportService.findById(requestId);
161161
if (request == null) {
162-
response.sendError(HttpServletResponse.SC_NOT_FOUND);
162+
httpResponse.sendError(HttpServletResponse.SC_NOT_FOUND);
163163
return null;
164164
}
165165

0 commit comments

Comments
 (0)