Skip to content

Commit

Permalink
fix StackOverflowError
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Jan 18, 2024
1 parent 8545283 commit 0cbc070
Show file tree
Hide file tree
Showing 3 changed files with 144 additions and 457 deletions.
4 changes: 2 additions & 2 deletions .ci/release-trigger.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# this file is evaluated by .ci/build.sh

POM_CURRENT_VERSION="7.7.4-SNAPSHOT" # perform release if pom.xml matches this version
POM_RELEASE_VERSION="7.8.0" # next release version
POM_CURRENT_VERSION="7.8.1-SNAPSHOT" # perform release if pom.xml matches this version
POM_RELEASE_VERSION="7.8.1" # next release version

DRY_RUN=false # is dry run?
SKIP_TESTS=true # skip tests during release build?
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public List<Proxy> select(final URI uri) {
if (systemSelector == this) {
final var oldDefaultSelector = oldSystemSelector;
if (oldDefaultSelector != null) {
result.addAll(ProxySelector.getDefault().select(uri));
result.addAll(oldDefaultSelector.select(uri));
}
} else {
result.addAll(systemSelector.select(uri));
Expand Down
Loading

0 comments on commit 0cbc070

Please sign in to comment.