This commit is contained in:
Mark Payne 2015-06-19 13:08:49 -04:00
commit 548f6d0835
1 changed files with 5 additions and 0 deletions

View File

@ -797,6 +797,11 @@ public final class DtoFactory {
copySnippet.getRemoteProcessGroups().add(copy(remoteGroup));
}
}
if (originalSnippet.getControllerServices() != null) {
for (final ControllerServiceDTO controllerService : originalSnippet.getControllerServices()) {
copySnippet.getControllerServices().add(copy(controllerService));
}
}
return copySnippet;
}