eclipse-rdf4j / rdf4j

Eclipse RDF4J: scalable RDF for Java
https://rdf4j.org/
BSD 3-Clause "New" or "Revised" License
363 stars 164 forks source link

Convert APIs using File to Path #456

Open abrokenjester opened 8 years ago

abrokenjester commented 8 years ago

(Migrated from https://openrdf.atlassian.net/browse/SES-1791)

As part of the Java-7 changes, we can support asynchronous IO calls and other enhancements by converting from File to Path in API calls.

http://docs.oracle.com/javase/tutorial/essential/io/legacy.html

barthanssens commented 7 years ago

According to the same log, this is related to #476

barthanssens commented 6 years ago

And replace some try-finally by try-with-resources in org.eclipse.rdf4j.common.io etc

abrokenjester commented 6 years ago

@barthanssens be aware that any changes in our public APIs for this will have to happen as part of a major new release - unless you can implement in a way that is backward compatible.

barthanssens commented 6 years ago

Yeah, I was thinking on changing some internal stuff first, without changing the signatures of the methods... (breaking changes indeed require a major release)

abrokenjester commented 3 years ago

@barthanssens is this issue still on your radar?