> The master commit history looks clean too.
I'm sure all is well there ;-) Just wanted to check that the relevant bit of
the change is indeed only:
```
- if (!view.list().isEmpty()) {
+ if (view == null) { // OSX HFS+ does not support
UserDefinedFileAttributeView
+ logger.debug("Could not look for attributes from %s",
directory);
+ } else if (!view.list().isEmpty()) {
```
Regarding that: what's our feeling on making `logger.debug` calls that are not
wrapped by `logger.isDebugEnabled`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/884#issuecomment-159342144