Skip to content

Commit 6eccbdb

Browse files
committed
CountryController: move to ru.mystamps.web.feature.country package.
Addressed to #927 No functional changes.
1 parent 5b644a9 commit 6eccbdb

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
@@ -30,6 +30,7 @@
3030
import ru.mystamps.web.controller.*; // NOPMD: UnusedImports
3131
import ru.mystamps.web.feature.category.CategoryConfig;
3232
import ru.mystamps.web.feature.category.CategoryService;
33+
import ru.mystamps.web.feature.country.CountryController;
3334

3435
@Configuration
3536
@RequiredArgsConstructor

src/main/java/ru/mystamps/web/controller/CountryController.java renamed to src/main/java/ru/mystamps/web/feature/country/CountryController.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.country;
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+
* Countries of the stamps.
3+
*/
4+
package ru.mystamps.web.feature.country;

0 commit comments

Comments
 (0)