Github user sjcorbett commented on a diff in the pull request:
https://github.com/apache/incubator-brooklyn/pull/655#discussion_r31324402
--- Diff:
locations/jclouds/src/main/java/brooklyn/location/jclouds/JcloudsLocationResolver.java
---
@@ -50,10 +50,10 @@
public static final Logger log =
LoggerFactory.getLogger(JcloudsLocationResolver.class);
- public static final String JCLOUDS = "jclouds";
+ private static final String JCLOUDS = "jclouds";
- public static final Map<String,ProviderMetadata> PROVIDERS =
getProvidersMap();
- public static final Map<String,ApiMetadata> APIS = getApisMap();
+ private static final Map<String,ProviderMetadata> PROVIDERS =
getProvidersMap();
+ private static final Map<String,ApiMetadata> APIS = getApisMap();
--- End diff --
I don't see much reason for them to be public. Protected would make more
sense.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---