Skip to content

Commit

Permalink
incorrect link to SOAP method reference; fixes #1056
Browse files Browse the repository at this point in the history
  • Loading branch information
stoicflame committed Dec 29, 2022
1 parent 781dffb commit acb71ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public Operation findOperationFor(String classname, String method) {
for (Service service : serviceGroup.getServices()) {
for (Operation operation : service.getOperations()) {
if (operation instanceof OperationImpl) {
if (method.startsWith(((OperationImpl)operation).getWebMethod().getSimpleName().toString()) && ((OperationImpl)operation).getWebMethod().getDeclaringEndpointInterface().getQualifiedName().contentEquals(classname)) {
if (method.equals(((OperationImpl)operation).getWebMethod().getSimpleName().toString()) && ((OperationImpl)operation).getWebMethod().getDeclaringEndpointInterface().getQualifiedName().contentEquals(classname)) {
return operation;
}
}
Expand Down

0 comments on commit acb71ef

Please sign in to comment.