Skip to content

Commit 6fc61a2

Browse files
committed
chore: add TODO items for the next refactoring steps.
Addressed to #927 [skip ci]
1 parent 22e18de commit 6fc61a2

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

src/main/java/ru/mystamps/web/feature/category/CategoryController.java

+2
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ public String processInput(
8484
return redirectTo(CategoryUrl.INFO_CATEGORY_PAGE, slug);
8585
}
8686

87+
// CheckStyle: ignore LineLength for next 1 line
88+
// @todo #927 CategoryController: remove dependency on SeriesService by moving showInfoBySlug() method
8789
@GetMapping(CategoryUrl.INFO_CATEGORY_PAGE)
8890
public String showInfoBySlug(
8991
@Category @PathVariable("slug") LinkEntityDto category,

src/main/java/ru/mystamps/web/feature/country/CountryController.java

+2
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ public String processInput(
8484
return redirectTo(CountryUrl.INFO_COUNTRY_PAGE, slug);
8585
}
8686

87+
// CheckStyle: ignore LineLength for next 1 line
88+
// @todo #927 CountryController: remove dependency on SeriesService by moving showInfoBySlug() method
8789
@GetMapping(CountryUrl.INFO_COUNTRY_PAGE)
8890
public String showInfoBySlug(
8991
@Country @PathVariable("slug") LinkEntityDto country,

src/main/java/ru/mystamps/web/feature/series/PurchaseAndSaleDto.java

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import java.math.BigDecimal;
2525
import java.util.Date;
2626

27+
// @todo #927 PurchaseAndSaleDto: move with related classes to series.sale package
2728
/**
2829
* @author Sergey Chechenev
2930
*/

0 commit comments

Comments
 (0)