Skip to content

Commit

Permalink
代码格式修改
Browse files Browse the repository at this point in the history
  • Loading branch information
pmiaowu committed Jul 31, 2020
1 parent dc0b162 commit 2afafc5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/burp/BurpExtender.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class BurpExtender implements IBurpExtender, IScannerCheck {

public static String NAME = "BurpShiroPassiveScan";
public static String VERSION = "1.4.1 beta";
public static String VERSION = "1.4.2 beta";

private IBurpExtenderCallbacks callbacks;
private IExtensionHelpers helpers;
Expand Down Expand Up @@ -120,10 +120,10 @@ public List<IScanIssue> doActiveScan(IHttpRequestResponse baseRequestResponse, I

@Override
public int consolidateDuplicateIssues(IScanIssue existingIssue, IScanIssue newIssue) {
if (existingIssue.getIssueName().equals(newIssue.getIssueName())) {
return -1;
} else {
return 0;
}
if (existingIssue.getIssueName().equals(newIssue.getIssueName())) {
return -1;
} else {
return 0;
}
}
}

0 comments on commit 2afafc5

Please sign in to comment.