You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2021/03/12 16:21:06 UTC

[jmeter] 12/12: Space after comma, not before

This is an automated email from the ASF dual-hosted git repository.

fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit 413b77ca0a716c3f2bb0a1500ceefa91f83b8083
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Fri Mar 12 16:57:10 2021 +0100

    Space after comma, not before
---
 .../jmeter/protocol/bolt/config/BoltConnectionElementBeanInfo.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/protocol/bolt/src/main/java/org/apache/jmeter/protocol/bolt/config/BoltConnectionElementBeanInfo.java b/src/protocol/bolt/src/main/java/org/apache/jmeter/protocol/bolt/config/BoltConnectionElementBeanInfo.java
index 40711d4..8087c99 100644
--- a/src/protocol/bolt/src/main/java/org/apache/jmeter/protocol/bolt/config/BoltConnectionElementBeanInfo.java
+++ b/src/protocol/bolt/src/main/java/org/apache/jmeter/protocol/bolt/config/BoltConnectionElementBeanInfo.java
@@ -51,7 +51,7 @@ public class BoltConnectionElementBeanInfo extends BeanInfoSupport {
         if(log.isDebugEnabled()) {
             String descriptorsAsString = Arrays.stream(getPropertyDescriptors())
                     .map(pd -> pd.getName() + "=" + pd.getDisplayName())
-                    .collect(Collectors.joining(" ,"));
+                    .collect(Collectors.joining(", "));
             log.debug(descriptorsAsString);
         }