Github user tbouron commented on a diff in the pull request:

    https://github.com/apache/brooklyn-server/pull/521#discussion_r100310194
  
    --- Diff: 
camp/camp-brooklyn/src/main/java/org/apache/brooklyn/camp/brooklyn/spi/dsl/DslDeferredFunctionCall.java
 ---
    @@ -62,7 +62,7 @@ public DslDeferredFunctionCall(Object o, String fn, 
List<Object> args) {
         @Override
         public Task<Object> newTask() {
             return Tasks.builder()
    -                .displayName("Deferred function call " + object + "." + 
fnName + "(" + toString(args) + ")")
    +                .displayName("Deferred function call " + object + "." + 
fnName + args + ")")
    --- End diff --
    
    Miss a `(` before the `args`:
    ```java
    .displayName("Deferred function call " + object + "." + fnName + "(" + args 
+ ")")
    ```
    
    Unless you can you your `DslToStringHelpers.fn()` ? 


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to