Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit af3d97b

Browse files
committed
fix styling
1 parent 8a7527f commit af3d97b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

libraries/bot-schema/src/main/java/com/microsoft/bot/schema/teams/MessageActionsPayload.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,18 +230,22 @@ public void setImportance(String withImportance) {
230230
}
231231

232232
/**
233-
* Gets the link back to the message
233+
* Gets the link back to the message.
234234
*
235235
* @return The link back to the message.
236236
*/
237-
public String getLinkToMessage() { return linkToMessage; }
237+
public String getLinkToMessage() {
238+
return linkToMessage;
239+
}
238240

239241
/**
240242
* Sets link back to the message.
241243
*
242244
* @param withLinkToMessage The link back to the message.
243245
*/
244-
public void setLinkToMessage(String withLinkToMessage) { linkToMessage = withLinkToMessage; }
246+
public void setLinkToMessage(String withLinkToMessage) {
247+
linkToMessage = withLinkToMessage;
248+
}
245249

246250
/**
247251
* Gets locale of the message set by the client.

0 commit comments

Comments
 (0)