Skip to content

Commit

Permalink
removed debug println
Browse files Browse the repository at this point in the history
  • Loading branch information
egru committed Mar 14, 2016
1 parent 2a81a55 commit 075ee83
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/java/burp/WSDLParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,12 @@ public int parseWSDL(IHttpRequestResponse requestResponse, IBurpExtenderCallback
}

WSDLTab wsdltab = tab.createTab(requestName);
List<QName> bindings = null;
List<QName> bindings;
try {
bindings = parser.getBindings();
System.out.println(bindings);
} catch (Exception e){
return -2;
}
System.out.println(bindings);
SoapBuilder builder;
List<SoapOperation> operations;
SoapOperation operation;
Expand Down Expand Up @@ -115,7 +113,6 @@ public int parseWSDL(IHttpRequestResponse requestResponse, IBurpExtenderCallback

}
}
System.out.println(bindings);
return 0;
}

Expand Down

0 comments on commit 075ee83

Please sign in to comment.