We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java sources of your library contains the code like:
List<Pair> params = new ArrayList<Pair>(); // ... Map<String, String> headerParams = new HashMap<String, String>(); // ... e.t.c.
(no diamond operator used) which means you are using something even older that Java 1.7 - probably Java 1.6.
Also I can see JodaTime library in dependencies, which also proves the theory about quite old Java version.
JodaTime
So my question is - do you have any plans to update the client to Java 8 (with removing some old libs like JodaTime)?
The text was updated successfully, but these errors were encountered:
Is there any update on this?
Sorry, something went wrong.
No branches or pull requests
Java sources of your library contains the code like:
(no diamond operator used) which means you are using something even older that Java 1.7 - probably Java 1.6.
Also I can see
JodaTime
library in dependencies, which also proves the theory about quite old Java version.So my question is - do you have any plans to update the client to Java 8 (with removing some old libs like JodaTime)?
The text was updated successfully, but these errors were encountered: