OfficeDev / orc-for-java

Office REST Client (ORC) for Java
MIT License
5 stars 3 forks source link

Guava 20.0 compatibility #6

Open evpaassen opened 7 years ago

evpaassen commented 7 years ago

This library is currently not compatible with Guava 20.0, because the Futures.transform(ListenableFuture, AsyncFunction) method has been renamed to Futures.asyncTransform(ListenableFuture, AsyncFunction).

See the deprecation warning in the Guava 19.0 docs. In Guava 20.0 the original method was removed (and a different method with the same name, but a different signature has been introduced).

The Guava dependency should be upgraded to 19.0 at least, before the usages in the com.microsoft.services.orc.core.Helpers class can be fixed.