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
Instead of strings for paths, we should prefer java.nio.file.Path.
The text was updated successfully, but these errors were encountered:
I could take this. Sari R
Sorry, something went wrong.
You should be aware of the similar work at testmycode/tmc-netbeans#111
Ok! Sari
NB: Prefer usage of java.nio instead of java.io.
java.nio
java.io
That is, use Files.exists(Path path)* instead of path.toFile().exists() etc. and preferably replace any existing usage of the class File with Path.
Files.exists(Path path)
path.toFile().exists()
File
Path
*) http://docs.oracle.com/javase/7/docs/api/java/nio/file/Files.html.
No branches or pull requests
Instead of strings for paths, we should prefer java.nio.file.Path.
The text was updated successfully, but these errors were encountered: