Skip to content

Commit

Permalink
fix: #410 add guard for running of end of parameter list for annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
mebigfatguy committed Dec 20, 2023
1 parent 9a07220 commit b00b50f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ private void processJAXRSMethod(Method m, String path, boolean hasConsumes) {
}

parmIndex++;
if (parmIndex >= numParms) {
return;
}
}

}
Expand Down

0 comments on commit b00b50f

Please sign in to comment.