This commit is contained in:
crusader 2018-06-14 19:51:05 +09:00
parent 7a5cdd6bbc
commit 7954196e36
2 changed files with 1 additions and 17 deletions

View File

@ -51,7 +51,7 @@
<dependency> <dependency>
<groupId>com.loafle.overflow</groupId> <groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId> <artifactId>commons-java</artifactId>
<version>1.0.66-SNAPSHOT</version> <version>1.0.67-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>

View File

@ -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; return infraHost;
} }