Skip to content

Commit

Permalink
gh-30 fix some infinite loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknow0 committed Jun 15, 2024
1 parent 9ff95b3 commit 0d49116
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bench.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
t: ['cxf', 'tomcat', 'unknow']
t: ['cxf', 'tomcat', 'unknow', 'native']
needs: build
steps:
- uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ public void setRequestUri(String path) {
if (j < 0)
j = path.length();
this.path.add(path.substring(i, j));
i = j;
} while (j < path.length());
i = j + 1;
} while (i < path.length());
}

public List<String> getPaths() {
Expand Down

0 comments on commit 0d49116

Please sign in to comment.