Skip to content

Commit

Permalink
Replace <tt> with {@code ...} for Java doc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoerenhout committed Aug 25, 2021
1 parent 8390908 commit c7599e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jsmpp/src/main/java/org/jsmpp/bean/TypeOfNumber.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public byte value() {
}

/**
* Get the <tt>TypeOfNumber</tt> based on the specified byte value
* Get the {@code TypeOfNumber} based on the specified byte value
* representation.
*
* @param value is the byte value representation.
Expand Down
2 changes: 1 addition & 1 deletion jsmpp/src/main/java/org/jsmpp/extra/SessionState.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public boolean isReceivable() {
/**
* Check whether the session state is not closed.
*
* @return <tt>true</tt> if session is not closed.
* @return {@code true} if session is not closed.
*/
public boolean isNotClosed() {
return !equals(CLOSED);
Expand Down

0 comments on commit c7599e5

Please sign in to comment.