Skip to content

Commit

Permalink
Fixed javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
lwj5 committed Feb 26, 2019
1 parent 9b19af7 commit 339a51c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/main/java/ai/preferred/venom/FatalHandlerException.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public FatalHandlerException(final String message) {
* @param message the detail message (which is saved for later retrieval
* by the {@link #getMessage()} method).
* @param cause the cause (which is saved for later retrieval by the
* {@link #getCause()} method). (A <tt>null</tt> value is
* {@link #getCause()} method). (A {@code null} value is
* permitted, and indicates that the cause is nonexistent or
* unknown.)
* @since 1.4
Expand All @@ -52,13 +52,13 @@ public FatalHandlerException(final String message, final Throwable cause) {

/**
* Constructs a new fatal handler exception with the specified cause and a
* detail message of <tt>(cause==null ? null : cause.toString())</tt>
* detail message of {@code (cause==null ? null : cause.toString())}
* (which typically contains the class and detail message of
* <tt>cause</tt>). This constructor is useful for runtime exceptions
* {@code cause}). This constructor is useful for runtime exceptions
* that are little more than wrappers for other throwables.
*
* @param cause the cause (which is saved for later retrieval by the
* {@link #getCause()} method). (A <tt>null</tt> value is
* {@link #getCause()} method). (A {@code null} value is
* permitted, and indicates that the cause is nonexistent or
* unknown.)
* @since 1.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class InlineExecutorService extends AbstractExecutorService implements Ex
private final Lock executing = new ReentrantLock();

/**
* Check and set terminated status
* Check and set terminated status.
*/
private void setTerminated() {
if (!shutdown.get()) {
Expand Down

0 comments on commit 339a51c

Please sign in to comment.