Browse Source

Optimize imports

Martin Tzvetanov Grigorov 11 years ago
parent
commit
980f9d00bb
1 changed files with 4 additions and 3 deletions
  1. 4 3
      wicket/src/main/java/hellowicket/World.java

+ 4 - 3
wicket/src/main/java/hellowicket/World.java

@@ -1,8 +1,9 @@
 package hellowicket;
 package hellowicket;
 
 
-import java.util.*;
-
-import javax.persistence.*;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
 
 
 @Entity
 @Entity
 public class World
 public class World