{{theTime}}

Search This Blog

Total Pageviews

com.google.common.base.Objects.firstNonNull is deprecated

com.google.common.base.Objects.firstNonNull() is deprecated.

Fix

com.google.common.base.Objects.MoreObjects.firstNonNull() instead.

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...