You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before java7 was available dcache have added org.dcache.util.list.DirectoryStream which is made as close as possible to java.nio.file.DirectoryStream. Since java7 is already released for years, we can finally drop custom interface and adopt it's the JDK provided analogue.
The text was updated successfully, but these errors were encountered:
…ile.DirectoryStream
Motivation: Since java7 is already released for years, we can finally drop the custom interface and adopt it's JDK provided analogue
Modification: Removed org.dcache.util.list.DirectoryStream and replaced it with java.nio.file.DirectoryStream, adding a few catch clauses and generic type casts
Result: dcache now uses java.nio.file.DirectoryStream and org.dcache.util.list.DirectoryStream could be deleted
Fixes: #gh-issue
Ticket: dCache#3821
Target: master
Signed-off-by: JPOstholt <jascha.ostholt@gmail.com>
JPOstholt
added a commit
to JPOstholt/dcache
that referenced
this issue
Feb 13, 2019
…ile.DirectoryStream
Motivation: Since java7 is already released for years, we can finally drop the custom interface and adopt it's JDK provided analogue
Modification: Removed org.dcache.util.list.DirectoryStream and replaced it with java.nio.file.DirectoryStream, adding a few catch clauses and generic type casts
Result: dcache now uses java.nio.file.DirectoryStream and org.dcache.util.list.DirectoryStream could be deleted
Fixes: #gh-issue
Ticket: dCache#3821
Target: master
Signed-off-by: JPOstholt <jascha.ostholt@gmail.com>
Before java7 was available dcache have added org.dcache.util.list.DirectoryStream which is made as close as possible to java.nio.file.DirectoryStream. Since java7 is already released for years, we can finally drop custom interface and adopt it's the JDK provided analogue.
The text was updated successfully, but these errors were encountered: