Skip to content

Commit 14121b8

Browse files
committed
spotless apply
1 parent a1cd65a commit 14121b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application/src/main/java/org/togetherjava/tjbot/features/basic/SuggestionsUpDownVoter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ private static void createThread(Message message) {
5959
String threadTitle;
6060
String messageContent = message.getContentRaw();
6161

62-
if (messageContent.isEmpty()){
62+
if (messageContent.isEmpty()) {
6363
threadTitle = message.getAuthor().getName();
6464
} else if (messageContent.length() >= TITLE_MAX_LENGTH) {
6565
int lastWordEnd = messageContent.lastIndexOf(' ', TITLE_MAX_LENGTH);

0 commit comments

Comments
 (0)