Skip to content

Commit d425827

Browse files
committed
style(JdbcSeriesImportDao.setSeriesIdAndChangeStatus): ignore LineLength check only for a couple lines instead of a whole method.
No code changes.
1 parent 86042dc commit d425827

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/ru/mystamps/web/feature/series/importing/JdbcSeriesImportDao.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ public Integer add(ImportSeriesDbDto importRequest) {
9595
return Integer.valueOf(holder.getKey().intValue());
9696
}
9797

98-
// Use SuppressWarnings to avoid complains about length of line with params
99-
@SuppressWarnings("linelength")
98+
// CheckStyle: ignore LineLength for next 2 lines
10099
@Override
101100
public void setSeriesIdAndChangeStatus(Integer seriesId, UpdateImportRequestStatusDbDto requestStatus) {
102101
Map<String, Object> params = new HashMap<>();

0 commit comments

Comments
 (0)