浏览代码

去除无效打印

yumeng 5 年之前
父节点
当前提交
124595b611

+ 0 - 4
jeecg-boot-module-system/src/main/java/org/jeecg/modules/ctop/controller/ActorController.java

@@ -226,7 +226,6 @@ public class ActorController {
     public Result<Actor> add(@RequestBody Actor actor) {
         Result<Actor> result = new Result<Actor>();
         try {
-
             String coverUrl = actor.getCoverUrl();
             if (!Check.isNull(coverUrl)) {
                 if (!coverUrl.contains(KuaishouInterfaceConstant.HTTPS_PREFIX)) {
@@ -234,8 +233,6 @@ public class ActorController {
                 }
             }
             actorService.save(actor);
-            System.err.println(actor);
-
             if (actor.getImageUrl() != null && actor.getImageUrl().size() > 0) {
                 for (String url : actor.getImageUrl()) {
                     ActorPhoto photo = new ActorPhoto();
@@ -261,7 +258,6 @@ public class ActorController {
                 }
             }
 
-
             result.success("添加成功!");
         } catch (Exception e) {
             log.error(e.getMessage(), e);