> for (Annotation annotation : f.getAnnotations()) {
> if
> (annotationToNameExtractor.containsKey(annotation.annotationType())) {
> return
> annotationToNameExtractor.get(annotation.annotationType()).apply(annotation);
> }
> }
> - return fallback.translateName(f);
> + return null;
[minor] Curious whether
[this](http://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/FieldNamingStrategy.html)
is `nullable` or whether we should throw an exception here?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/596/files#r19710115