package fixes

This commit is contained in:
eugenp 2017-08-05 16:13:22 +03:00
parent 7114e3965b
commit f913859c6f
4 changed files with 7 additions and 6 deletions

View File

@ -1,9 +1,10 @@
package com.baeldung.application;
package com.baeldung.hashcode.application;
import com.baeldung.entities.User;
import java.util.HashMap;
import java.util.Map;
import com.baeldung.hashcode.entities.User;
public class Application {
public static void main(String[] args) {

View File

@ -1,4 +1,4 @@
package com.baeldung.entities;
package com.baeldung.hashcode.entities;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

View File

@ -1,4 +1,4 @@
package com.baeldung.application;
package com.baeldung.hashcode.application;
import org.junit.After;
import org.junit.Before;

View File

@ -1,4 +1,4 @@
package com.baeldung.entities;
package com.baeldung.hashcode.entities;
import org.junit.After;
import org.junit.Assert;