Skip to content

Commit

Permalink
Fix javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
baffles committed Jan 18, 2019
1 parent 6920658 commit e2dac8d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/secdec/codedx/api/client/Filter.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,7 @@ public void setNotToolOverlap(String[] notToolOverlap) {
* Implementations wishing to construct a filter with "New" as a criteria should
* check the server's version before doing so; if it is one of these versions,
* the implementation should use the "First Seen" filter instead.
*
* @see {@link CodeDxVersion#supportsTriageNew()}
* see CodeDxVersion#supportsTriageNew
*/
public static final String STATUS_NEW = "new";
public static final String STATUS_ESCALATED = "escalated";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
*
* @author codyaray
* @since 4/22/2013
* @see
*/
public class CompositeX509TrustManager implements X509TrustManager {

Expand Down Expand Up @@ -77,4 +76,4 @@ public X509Certificate[] getAcceptedIssuers() {
return certificates.toArray(new X509Certificate[certificates.size()]);
}

}
}
2 changes: 1 addition & 1 deletion src/main/java/com/secdec/codedx/util/CodeDxVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public final class CodeDxVersion implements Comparable<CodeDxVersion> {
* Version when the "New" triage status was returned to Code Dx (2.4.2).
* Several clients were adversely affected by the removal, and requested its return.
* Versions <em>before</em> (exclusive) this version, and <em>starting from</em> (inclusive)
* the <code></code>NEW_STATUS_REMOVED</code> version must use the "First Seen" filter
* the <code>NEW_STATUS_REMOVED</code> version must use the "First Seen" filter
* in order to emulate the behavior of the "triage status = New" filter.
*/
public final static CodeDxVersion NEW_STATUS_RETURNED = fromString("2.4.2");
Expand Down

0 comments on commit e2dac8d

Please sign in to comment.