Merge pull request #6484 from worldpeacez0991/patch-1

Update CourseService.java
This commit is contained in:
Loredana Crusoveanu
2019-04-21 11:06:06 +03:00
committed by GitHub
@@ -29,6 +29,6 @@ public class CourseService {
}
public static void copyProperties(Course course, CourseEntity courseEntity) throws IllegalAccessException, InvocationTargetException {
BeanUtils.copyProperties(course, courseEntity);
BeanUtils.copyProperties(courseEntity, course);
}
}