Skip to content

Commit

Permalink
remove : 불필요 출력문 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
rlagkswn00 committed Dec 19, 2024
1 parent c4fda5b commit a00c324
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ out/
### API docs ###
**/src/main/resources/static/docs/*

**/ku-stack-firebase-adminsdk-87nwq-5ba04dfc12.json
**/ku-stack-firebase-adminsdk-87nwq-ae6a2df931.json
**/src/main/generated/
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ configurations.all {
}
}

test.onlyIf { System.getenv('DEPLOY_ENV') == 'dev' }
//test.onlyIf { System.getenv('DEPLOY_ENV') == 'dev' }

test {
jacoco {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ private StaffCompareResults compare(StaffScrapResults scrapResults) {
}

private void synchronizationWithDb(StaffCompareResults compareResults) {
System.out.println(compareResults.toString());
staffRepository.deleteAll(compareResults.deleteStaffs());
staffRepository.saveAll(compareResults.newStaffs());
}
Expand Down

0 comments on commit a00c324

Please sign in to comment.