Github user grkvlt commented on a diff in the pull request:
https://github.com/apache/incubator-brooklyn/pull/570#discussion_r27076300
--- Diff:
software/nosql/src/main/java/brooklyn/entity/nosql/riak/RiakNodeSshDriver.java
---
@@ -68,7 +77,7 @@ public RiakNodeImpl getEntity() {
@Override
public Map<String, String> getShellEnvironment() {
MutableMap<String, String> result =
MutableMap.copyOf(super.getShellEnvironment());
- // how to change epmd port, according to
+ // how to change epmd port, according to
//
http://serverfault.com/questions/582787/how-to-change-listening-interface-of-rabbitmqs-epmd-port-4369
if (getEntity().getEpmdListenerPort() != null) {
result.put("ERL_EPMD_PORT", "" +
Integer.toString(getEntity().getEpmdListenerPort()));
--- End diff --
Can you fix this so it doesn't have the `"" + ` part before the
`Integer#toString(Integer)` call?
---
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.
---