Skip to content

Commit 64f8309

Browse files
committed
CategoryController: move to ru.mystamps.web.feature.category package.
Addressed to #927 No functional changes.
1 parent 114e6a4 commit 64f8309

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

src/main/java/ru/mystamps/web/config/ControllersConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
// CheckStyle: ignore AvoidStarImportCheck for next 1 line
2929
import ru.mystamps.web.controller.*; // NOPMD: UnusedImports
30+
import ru.mystamps.web.feature.category.CategoryController;
3031

3132
@Configuration
3233
@RequiredArgsConstructor

src/main/java/ru/mystamps/web/controller/CategoryController.java renamed to src/main/java/ru/mystamps/web/feature/category/CategoryController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* along with this program; if not, write to the Free Software
1616
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1717
*/
18-
package ru.mystamps.web.controller;
18+
package ru.mystamps.web.feature.category;
1919

2020
import java.io.IOException;
2121
import java.util.List;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* Categories of the stamp series.
3+
*/
4+
package ru.mystamps.web.feature.category;

0 commit comments

Comments
 (0)