Skip to content

Commit

Permalink
Fix javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tdrwenski committed Apr 17, 2024
1 parent fa0edd1 commit 03132b2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions dap4/d4servlet/src/main/java/dap4/servlet/CDMWrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -184,15 +184,15 @@ public void close() throws IOException {
*/

/**
* Track generic CDMNode <-> DapNode
* Track generic CDMNode {@literal <->} DapNode
*/
protected void recordNode(CDMNode cdm, DapNode dap) {
assert this.nodemap.get(cdm) == null && this.nodemap.get(dap) == null;
this.nodemap.put(cdm, dap);
}

/**
* Track Variable <-> DapVariable
* Track Variable {@literal <->} DapVariable
*/
protected void recordVar(Variable cdm, DapVariable dap) {
cdm = CDMUtil.unwrap(cdm);
Expand All @@ -201,7 +201,7 @@ protected void recordVar(Variable cdm, DapVariable dap) {
}

/**
* Track Variable <-> DapStructure
* Track Variable {@literal <->} DapStructure
*/
protected void recordStruct(Variable cdm, DapStructure dap) {
cdm = CDMUtil.unwrap(cdm);
Expand All @@ -210,7 +210,7 @@ protected void recordStruct(Variable cdm, DapStructure dap) {
}

/**
* Track Variable <-> DapSequence
* Track Variable {@literal <->} DapSequence
*/
protected void recordSeq(Variable cdm, DapSequence dap) {
cdm = CDMUtil.unwrap(cdm);
Expand Down
8 changes: 4 additions & 4 deletions dap4/d4servlet/src/main/java/dap4/servlet/ChunkWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,10 @@ void sendDXR(byte[] dxr8) throws IOException {
* else reset the current chunk thus
* losing any partial write.
*
* @param httpcode The httpcode, 0 => ignore
* @param msg The <Error> <Message>, null => ignore
* @param cxt The <Error> <Context>, null => ignore
* @param other The <Error> <OtherInformation>, null => ignore
* @param httpcode The httpcode, 0 {@literal =>} ignore
* @param msg The <Error> <Message>, null {@literal =>} ignore
* @param cxt The <Error> <Context>, null {@literal =>} ignore
* @param other The <Error> <OtherInformation>, null {@literal =>} ignore
* @throws IOException on IO related errors
*/
public void writeError(int httpcode, String msg, String cxt, String other) throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ protected DapRequest getRequestState(HttpServletRequest rq, HttpServletResponse
* Generate an error based on the parameters
*
* @param drq DapRequest
* @param httpcode 0=>no code specified
* @param httpcode 0 {@literal =>} no code specified
* @param t exception that caused the error; may be null
* @throws IOException
*/
Expand Down

0 comments on commit 03132b2

Please sign in to comment.