You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2019/10/13 13:21:08 UTC

[jmeter] branch master updated: AbstractJMeterGuiComponent: Fix format violation

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 71e996c  AbstractJMeterGuiComponent: Fix format violation
71e996c is described below

commit 71e996c286253141fb91986d15fee07ce68a9e1b
Author: pmouawad <p....@ubik-ingenierie.com>
AuthorDate: Sun Oct 13 15:20:54 2019 +0200

    AbstractJMeterGuiComponent: Fix format violation
---
 .../src/main/java/org/apache/jmeter/gui/AbstractJMeterGuiComponent.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/src/main/java/org/apache/jmeter/gui/AbstractJMeterGuiComponent.java b/src/core/src/main/java/org/apache/jmeter/gui/AbstractJMeterGuiComponent.java
index 4c2b95d..0d4f6ef 100644
--- a/src/core/src/main/java/org/apache/jmeter/gui/AbstractJMeterGuiComponent.java
+++ b/src/core/src/main/java/org/apache/jmeter/gui/AbstractJMeterGuiComponent.java
@@ -139,7 +139,7 @@ public abstract class AbstractJMeterGuiComponent extends JPanel implements JMete
      */
     @Override
     public String getName() {
-        if (getNamePanel() != null) { // Check is mandatory because some LAFs (Nimbus) call getName() from 
+        if (getNamePanel() != null) { // Check is mandatory because some LAFs (Nimbus) call getName() from
                                       // super constructor (so can happen before namePanel field is initialized
             return getNamePanel().getName();
         }