File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/ru/mystamps/web/controller Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -149,17 +149,17 @@ public String processImportSeriesForm(
149
149
BindingResult result ,
150
150
@ CurrentUser Integer currentUserId ,
151
151
Locale userLocale ,
152
- HttpServletResponse response )
152
+ HttpServletResponse httpResponse )
153
153
throws IOException {
154
154
155
155
if (requestId == null ) {
156
- response .sendError (HttpServletResponse .SC_NOT_FOUND );
156
+ httpResponse .sendError (HttpServletResponse .SC_NOT_FOUND );
157
157
return null ;
158
158
}
159
159
160
160
ImportRequestDto request = seriesImportService .findById (requestId );
161
161
if (request == null ) {
162
- response .sendError (HttpServletResponse .SC_NOT_FOUND );
162
+ httpResponse .sendError (HttpServletResponse .SC_NOT_FOUND );
163
163
return null ;
164
164
}
165
165
You can’t perform that action at this time.
0 commit comments