Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix javadoc warnings #493

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading