diff --git a/pom.xml b/pom.xml
index 000a21c..a384cb4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -13,7 +13,7 @@
com.loafle.overflow
commons-java
jar
- 1.0.67-SNAPSHOT
+ 1.0.68-SNAPSHOT
com.loafle.overflow.commons-java
diff --git a/src/main/java/com/loafle/overflow/model/infra/InfraHost.java b/src/main/java/com/loafle/overflow/model/infra/InfraHost.java
index 2f90d95..c1de222 100644
--- a/src/main/java/com/loafle/overflow/model/infra/InfraHost.java
+++ b/src/main/java/com/loafle/overflow/model/infra/InfraHost.java
@@ -19,7 +19,6 @@ public class InfraHost extends Infra {
private InfraHostMachine infraHostMachine;
private InfraHostOS infraHostOS;
private List infraHostIPs;
- private List infraHostPorts;
public InfraHost() {
super();
@@ -96,18 +95,4 @@ public class InfraHost extends Infra {
this.infraHostIPs = infraHostIPs;
}
- /**
- * @return the infraHostPorts
- */
- @OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, orphanRemoval = true)
- public List getInfraHostPorts() {
- return infraHostPorts;
- }
-
- /**
- * @param infraHostPorts the infraHostPorts to set
- */
- public void setInfraHostPorts(List infraHostPorts) {
- this.infraHostPorts = infraHostPorts;
- }
}