Skip to content
Snippets Groups Projects
Commit cc7485b1 authored by Dirk Furrer's avatar Dirk Furrer
Browse files

no-jira: fixed wrong merging

parent 6b8fd6cd
No related branches found
No related tags found
No related merge requests found
......@@ -265,14 +265,17 @@ public class ENCourseNode extends AbstractAccessableCourseNode {
@Override
public void postCopy(CourseEnvironmentMapper envMapper, Processing processType) {
super.postCopy(envMapper, processType);
postImportCopy(envMapper);
super.postCopy(envMapper, processType);
postImportCopy(envMapper);
}
@Override
public void postImport(CourseEnvironmentMapper envMapper, Processing processType) {
super.postImport(envMapper, processType);
postImportCopy(envMapper);
}
@Override
public void postImport(CourseEnvironmentMapper envMapper) {
super.postImport(envMapper);
public void postImportCopy(CourseEnvironmentMapper envMapper) {
ModuleConfiguration mc = getModuleConfiguration();
String groupNames = (String)mc.get(ENCourseNode.CONFIG_GROUPNAME);
@SuppressWarnings("unchecked")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment