Skip to content

Commit

Permalink
Update: 길이에 따른 줄 바꿈 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobhboy committed Mar 21, 2024
1 parent 74cac6c commit 38cb2ae
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ public Long execute(String bearer, String title, DocsUpdateRequestDto docsUpdate
if (foundDocs.getStatus() == Status.CONFLICTED) {
throw new DocsConflictedException();
}
VersionDocs savedVersionDocs = saveVersionDocs(docsUpdateRequestDto, foundDocs.getId(), foundDocs.getLastVersion());
VersionDocs savedVersionDocs = saveVersionDocs(docsUpdateRequestDto, foundDocs.getId(),
foundDocs.getLastVersion());
Docs docs;

if (foundDocs.getLastVersion() != docsUpdateRequestDto.getUpdatingVersion()) {
Expand Down

0 comments on commit 38cb2ae

Please sign in to comment.