Skip to content

Commit 7be324a

Browse files
committed
CLAP-214 Hotifx : 카테고리 수정 로직 수정
<footer> - 관련: #216
1 parent 280d930 commit 7be324a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/clap/server/domain/model/task/Category.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ public static Category createSubCategory(Member admin, Category mainCategory, St
4040
.build();
4141
}
4242

43-
public void updateCategory(Member admin, String code, String name){
43+
public void updateCategory(Member admin, String name, String code){
4444
this.admin = admin;
45-
this.code = code;
4645
this.name = name;
46+
this.code = code;
4747
}
4848

4949
public void deleteCategory(Member admin) {

0 commit comments

Comments
 (0)