Skip to content

Commit

Permalink
chore : 자바 코드 형식 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
GaBaljaintheroom committed May 31, 2024
1 parent cf174a4 commit 2464e31
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public CapsuleSkinStatusResponse sendCapsuleSkinCreateMessage(
CapsuleSkin capsuleSkin = capsuleSkinMapper.createDtoToEntity(dto, foundMember);

transactionTemplate.executeWithoutResult(status ->
capsuleSkinRepository.save(capsuleSkin)
capsuleSkinRepository.save(capsuleSkin)
);
return CapsuleSkinStatusResponse.success();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.enums.ParameterIn;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.responses.ApiResponses;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public GroupMemberWithRelationDto toRelationDto(final List<Long> friendIds) {
.build();
}

public GroupMemberInfoResponse toInfoResponse(final Function<String, String> singlePreSignUrlFunction) {
public GroupMemberInfoResponse toInfoResponse(
final Function<String, String> singlePreSignUrlFunction) {
return GroupMemberInfoResponse.builder()
.memberId(memberId)
.profileUrl(singlePreSignUrlFunction.apply(profileUrl))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public record GroupMemberWithRelationDto(
Boolean isFriend
) {

public GroupMemberWithRelationResponse toResponse(final Function<String, String> singlePreSignUrlFunction) {
public GroupMemberWithRelationResponse toResponse(
final Function<String, String> singlePreSignUrlFunction) {
return GroupMemberWithRelationResponse.builder()
.memberId(memberId)
.profileUrl(singlePreSignUrlFunction.apply(profileUrl))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import site.timecapsulearchive.core.domain.group.data.dto.FinalGroupSummaryDto;
import site.timecapsulearchive.core.domain.group.data.dto.GroupDetailDto;
import site.timecapsulearchive.core.domain.group.data.dto.GroupMemberDto;
import site.timecapsulearchive.core.domain.group.data.dto.GroupMemberWithRelationDto;


public interface GroupQueryRepository {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
public @interface RedissonLock {

String value();

long waitTime() default 5000L;

long leaseTime() default 3000L;
}

0 comments on commit 2464e31

Please sign in to comment.