From 7954196e36cc7cfa8e929ce56638300c3ef7b34a Mon Sep 17 00:00:00 2001 From: crusader Date: Thu, 14 Jun 2018 19:51:05 +0900 Subject: [PATCH] ing --- pom.xml | 2 +- .../infra/service/CentralInfraService.java | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index 2f10b28..dfc10e1 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ com.loafle.overflow commons-java - 1.0.66-SNAPSHOT + 1.0.67-SNAPSHOT diff --git a/src/main/java/com/loafle/overflow/central/module/infra/service/CentralInfraService.java b/src/main/java/com/loafle/overflow/central/module/infra/service/CentralInfraService.java index 0012745..c9bf701 100644 --- a/src/main/java/com/loafle/overflow/central/module/infra/service/CentralInfraService.java +++ b/src/main/java/com/loafle/overflow/central/module/infra/service/CentralInfraService.java @@ -348,22 +348,6 @@ public class CentralInfraService implements InfraService { } } - if (null != oriInfraHost.getInfraHostApplications()) { - for (InfraHostApplication infraHostApplication : oriInfraHost.getInfraHostApplications()) { - infraHostApplication.setInfraHost(infraHost); - - this.infraHostApplicationService.regist(infraHostApplication); - } - } - - if (null != oriInfraHost.getInfraHostDaemons()) { - for (InfraHostDaemon infraHostDaemon : oriInfraHost.getInfraHostDaemons()) { - infraHostDaemon.setInfraHost(infraHost); - - this.infraHostDaemonService.regist(infraHostDaemon); - } - } - return infraHost; }