Skip to content

Commit 1a42ef4

Browse files
author
GuoHao
authored
fix: checkstyle (#588)
1 parent 560a6ae commit 1a42ef4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

server/src/main/java/run/ikaros/server/store/repository/AttachmentReferenceRepository.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,15 @@ Mono<Boolean> existsByTypeAndReferenceId(
1919
AttachmentRelationType type, Long referenceId
2020
);
2121

22+
Mono<Boolean> existsByTypeAndReferenceId(AttachmentReferenceType type, Long referenceId);
23+
2224
Mono<Boolean> existsByAttachmentId(Long attachmentId);
2325

26+
2427
Mono<AttachmentReferenceEntity> findByTypeAndAttachmentIdAndReferenceId(
2528
AttachmentReferenceType type, Long attachmentId, Long referenceId
2629
);
2730

28-
Mono<Boolean> existsByTypeAndReferenceId(AttachmentReferenceType type, Long referenceId);
2931

3032
Flux<AttachmentReferenceEntity> findAllByTypeAndReferenceId(AttachmentReferenceType type,
3133
Long referenceId);

0 commit comments

Comments
 (0)