-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace Guava collection factory methods with native JDK APIs (#47)
* Replace Lists.newArrayList() with new ArrayList<>() in RetryerBuilder * Replace Sets.newHashSet() w/new HashSet<>() in AttemptTimeLimitersTest * Replace Lists.newArrayList(waitStrategies) to the more verbose new ArrayList<>(Arrays.asList(waitStrategies)) because of the null check below. For now just wanted to keep existing behavior as-is so this was one way using only native JDK API. Closes #42
- Loading branch information
1 parent
92da33b
commit 1b076f7
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters