There was an error while loading. Please reload this page.
1 parent 5e8aaeb commit 608f4c5Copy full SHA for 608f4c5
1 file changed
ioc-basics/src/main/java/com/bobocode/configs/ApplicationConfigs.java
@@ -1,7 +1,5 @@
1
package com.bobocode.configs;
2
3
-import com.bobocode.dao.AccountDao;
4
-import com.bobocode.dao.impl.FakeAccountDaoImpl;
5
import org.springframework.context.annotation.Bean;
6
import org.springframework.context.annotation.ComponentScan;
7
import org.springframework.context.annotation.Configuration;
@@ -22,8 +20,4 @@
22
20
@ComponentScan(basePackages = "com.bobocode")
23
21
public class ApplicationConfigs {
24
25
- @Bean
26
- public AccountDao fakeAccountDao() {
27
- return new FakeAccountDaoImpl();
28
- }
29
}
0 commit comments