Skip to content

Commit

Permalink
CountryDao: move to ru.mystamps.web.feature.country package.
Browse files Browse the repository at this point in the history
Addressed to #927

No functional changes.
  • Loading branch information
php-coder committed Jul 19, 2018
1 parent e4fe6a9 commit 8506672
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/main/java/ru/mystamps/web/config/DaoConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
// CheckStyle: ignore AvoidStarImportCheck for next 2 lines
import ru.mystamps.web.dao.*; // NOPMD: UnusedImports
import ru.mystamps.web.dao.impl.*; // NOPMD: UnusedImports
import ru.mystamps.web.feature.country.CountryDao;
import ru.mystamps.web.feature.country.JdbcCountryDao;

@Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package ru.mystamps.web.dao;
package ru.mystamps.web.feature.country;

import java.util.Date;
import java.util.List;

import ru.mystamps.web.dao.dto.LinkEntityDto;
import ru.mystamps.web.feature.country.AddCountryDbDto;

@SuppressWarnings("PMD.TooManyMethods")
public interface CountryDao {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@

import lombok.RequiredArgsConstructor;

import ru.mystamps.web.dao.CountryDao;
import ru.mystamps.web.dao.dto.LinkEntityDto;
import ru.mystamps.web.support.spring.security.HasAuthority;
import ru.mystamps.web.util.LocaleUtils;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@

import lombok.RequiredArgsConstructor;

import ru.mystamps.web.dao.CountryDao;
import ru.mystamps.web.dao.dto.LinkEntityDto;
import ru.mystamps.web.support.jdbc.RowMappers;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import spock.lang.Unroll

import org.slf4j.helpers.NOPLogger

import ru.mystamps.web.dao.CountryDao
import ru.mystamps.web.dao.dto.LinkEntityDto
import ru.mystamps.web.service.TestObjects
import ru.mystamps.web.tests.DateUtils
Expand Down

1 comment on commit 8506672

@0pdd
Copy link

@0pdd 0pdd commented on 8506672 Jul 19, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 493-278bfc9b discovered in src/main/config/findbugs-filter.xml and submitted as #931. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.