facebook-java-business-sdk icon indicating copy to clipboard operation
facebook-java-business-sdk copied to clipboard

Guava Vesion too Old

Open ChubChen opened this issue 4 years ago • 1 comments

return Futures.transform( executeAsyncInternal(extraParams), new Function<ResponseWrapper, APINodeList<AdsInsights>>() { public APINodeList<AdsInsights> apply(ResponseWrapper result) { try { return APIRequestGetInsights.this.parseResponse(result.getBody(), result.getHeader()); } catch (Exception e) { throw new RuntimeException(e); } } } );

error

ChubChen avatar May 26 '21 06:05 ChubChen

Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. Thank you for your contributions.

stale[bot] avatar Jan 09 '22 02:01 stale[bot]

This is still an issue @stcheng. Try compiling this project on newer versions of guava (~31) and compilation will not pass because Futures.addCallback requires three parameters now. I believe you can pass MoreExecutors.directExecutor() as the third param and that will make it happy with both 20 and 31+.

mmorrisontx avatar Jul 13 '23 19:07 mmorrisontx

Still an issue. Any news on this?

noahrenable avatar Sep 29 '23 10:09 noahrenable