From 88b2f81da5b2d6346df7b3e96b5387a529ca4b3b Mon Sep 17 00:00:00 2001 From: ryans Date: Tue, 28 Nov 2017 14:42:55 -0500 Subject: [PATCH] Cleanup javadoc comments --- src/org/jlab/elog/LogItem.java | 4 ++-- src/org/jlab/elog/ProblemReport.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/org/jlab/elog/LogItem.java b/src/org/jlab/elog/LogItem.java index 6dbafba..1a8f6aa 100644 --- a/src/org/jlab/elog/LogItem.java +++ b/src/org/jlab/elog/LogItem.java @@ -295,7 +295,7 @@ void checkAndTallyAttachmentSize() throws AttachmentSizeException, * type. The mime type is guessed by using the readily available * java.net.URLConnection file name map, which simply looks at file * extension and compares with the very limited lookup file at: - * [JRE_HOME]\lib\content-types.properties + *
{@code[JRE_HOME]\lib\content-types.properties}
* * @param filepath The file path * @throws AttachmentSizeException If the attachment crosses a size limit @@ -312,7 +312,7 @@ public void addAttachment(String filepath) throws AttachmentSizeException, * mime type. The mime type is guessed by using the readily available * java.net.URLConnection file name map, which simply looks at file * extension and compares with the very limited lookup file at: - * [JRE_HOME]\lib\content-types.properties + *
{@code[JRE_HOME]\lib\content-types.properties}
* * @param filepath The file path * @param caption The caption diff --git a/src/org/jlab/elog/ProblemReport.java b/src/org/jlab/elog/ProblemReport.java index b690cec..d4cd197 100644 --- a/src/org/jlab/elog/ProblemReport.java +++ b/src/org/jlab/elog/ProblemReport.java @@ -28,7 +28,7 @@ public final class ProblemReport { * @param systemId The system ID * @param groupId The group ID * @param componentId The optional component ID (may be null) - * @throws LogEntryRuntimeException if type is null + * @throws LogRuntimeException if type is null */ public ProblemReport(ProblemReportType type, boolean needsAttention, int systemId, int groupId, Integer componentId) throws LogRuntimeException {