diff --git a/src/main/java/shop/hooking/hooking/controller/CopyController.java b/src/main/java/shop/hooking/hooking/controller/CopyController.java index eb1a470..84f7325 100644 --- a/src/main/java/shop/hooking/hooking/controller/CopyController.java +++ b/src/main/java/shop/hooking/hooking/controller/CopyController.java @@ -53,7 +53,7 @@ public HttpRes> copyList() { } private List getLimitedCopyRes(List copyResList, int limit){ - Collections.shuffle(copyResList); +// Collections.shuffle(copyResList); int endIndex = Math.min(limit, copyResList.size()); return copyResList.subList(0,endIndex); }