We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f061cbb commit 7a05b0cCopy full SHA for 7a05b0c
src/main/java/ru/mystamps/web/feature/series/importing/SeriesImportServiceImpl.java
@@ -70,7 +70,7 @@ public class SeriesImportServiceImpl implements SeriesImportService {
70
public Integer addRequest(RequestImportDto dto, Integer userId) {
71
Validate.isTrue(dto != null, "DTO must be non null");
72
Validate.isTrue(dto.getUrl() != null, "URL must be non null");
73
- Validate.isTrue(userId != null, "Current user id must be non null");
+ Validate.isTrue(userId != null, "User id must be non null");
74
75
ImportSeriesDbDto importRequest = new ImportSeriesDbDto();
76
importRequest.setStatus(SeriesImportRequestStatus.UNPROCESSED);
0 commit comments