Change package name

This commit is contained in:
ramkumarvenkat 2020-04-02 07:13:19 +05:30
parent a0478a7832
commit 7187cb0dfb
4 changed files with 3 additions and 6 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.guava.entity;
package com.baeldung.guava.mapmaker;
public class Profile {
private long id;

View File

@ -1,4 +1,4 @@
package com.baeldung.guava.entity;
package com.baeldung.guava.mapmaker;
public class Session {
private long id;

View File

@ -1,4 +1,4 @@
package com.baeldung.guava.entity;
package com.baeldung.guava.mapmaker;
public class User {
private long id;

View File

@ -1,8 +1,5 @@
package com.baeldung.guava.mapmaker;
import com.baeldung.guava.entity.Profile;
import com.baeldung.guava.entity.Session;
import com.baeldung.guava.entity.User;
import com.google.common.collect.MapMaker;
import org.junit.Assert;
import org.junit.Test;