-
Notifications
You must be signed in to change notification settings - Fork 30
remove usage of deprecated methods in guava #61
remove usage of deprecated methods in guava #61
Conversation
Codecov Report
@@ Coverage Diff @@
## master #61 +/- ##
============================================
- Coverage 61.34% 60.19% -1.15%
+ Complexity 141 138 -3
============================================
Files 14 14
Lines 608 603 -5
Branches 92 92
============================================
- Hits 373 363 -10
- Misses 212 217 +5
Partials 23 23
Continue to review full report at Codecov.
|
garrettjonesgoogle
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM after the tests pass
garrettjonesgoogle
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, some more stuff to do...
| exceptionType, | ||
| new GaxFunctionToGuavaFunction<X, V>(callback)); | ||
| new GaxFunctionToGuavaFunction<X, V>(callback), | ||
| directExecutor()); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
| return new ListenableFutureToApiFuture<>( | ||
| Futures.transform( | ||
| listenableFutureForApiFuture(input), new GaxFunctionToGuavaFunction<V, X>(function))); | ||
| return transform(input, function, directExecutor()); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
| } | ||
| }); | ||
| return new ListenableFutureToApiFuture<>(listenableOutput); | ||
| return transformAsync(input, function, directExecutor()); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Please enter the commit message for your changes. Lines starting
|
PTAL @garrettjonesgoogle |
garrettjonesgoogle
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
* remove usage of deprecated methods in guava * Deprecated methods parellel to those deparecated in guava
No description provided.