Skip to content

Commit

Permalink
refactor: AllArgsConstructor PRIVATE으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeHanEum committed Feb 17, 2025
1 parent 5aacc95 commit 0c574a9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package depromeet.onepiece.file.domain;

import static lombok.AccessLevel.PRIVATE;
import static lombok.AccessLevel.PROTECTED;
import static org.springframework.data.mongodb.core.mapping.Field.Write.NON_NULL;

Expand All @@ -18,7 +19,7 @@
@Builder
@Document
@NoArgsConstructor(access = PROTECTED)
@AllArgsConstructor(access = PROTECTED)
@AllArgsConstructor(access = PRIVATE)
public class FileDocument extends BaseTimeDocument {
@MongoId private ObjectId id;

Expand Down

0 comments on commit 0c574a9

Please sign in to comment.