Skip to content

Commit a0afc15

Browse files
committed
style: write a method's parameter in a single line
1 parent c6609cc commit a0afc15

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/main/java/ru/mystamps/web/feature/collection/CollectionServiceImpl.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,7 @@ public List<SeriesInCollectionDto> findSeriesInCollection(Integer collectionId,
190190
@Override
191191
@Transactional(readOnly = true)
192192
@PreAuthorize(HasAuthority.ADD_SERIES_PRICE_AND_COLLECTION_OWNER_OR_VIEW_ANY_ESTIMATION)
193-
public List<SeriesInCollectionWithPriceDto> findSeriesWithPricesBySlug(
194-
String slug,
195-
String lang) {
196-
193+
public List<SeriesInCollectionWithPriceDto> findSeriesWithPricesBySlug(String slug, String lang) {
197194
Validate.isTrue(slug != null, "Collection slug must be non null");
198195

199196
return collectionDao.findSeriesWithPricesBySlug(slug, lang);

0 commit comments

Comments
 (0)