You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2020/03/29 19:19:04 UTC

[jmeter] branch master updated: Fix trailing whitespace in XPath2ExtractorGui

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

vladimirsitnikov 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 e9b7351  Fix trailing whitespace in XPath2ExtractorGui
e9b7351 is described below

commit e9b735105292242cedf947f26a547e285c7aef03
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Sun Mar 29 22:18:53 2020 +0300

    Fix trailing whitespace in XPath2ExtractorGui
---
 .../main/java/org/apache/jmeter/extractor/gui/XPath2ExtractorGui.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/src/main/java/org/apache/jmeter/extractor/gui/XPath2ExtractorGui.java b/src/components/src/main/java/org/apache/jmeter/extractor/gui/XPath2ExtractorGui.java
index d869897..8720c5e 100644
--- a/src/components/src/main/java/org/apache/jmeter/extractor/gui/XPath2ExtractorGui.java
+++ b/src/components/src/main/java/org/apache/jmeter/extractor/gui/XPath2ExtractorGui.java
@@ -125,7 +125,7 @@ public class XPath2ExtractorGui extends AbstractPostProcessorGui{ // NOSONAR Ign
     private JPanel makeParameterPanel() {
         JPanel mainPanel = new JPanel(new BorderLayout());
         mainPanel.add(createScopePanel(true, true, true), BorderLayout.NORTH);
-        
+
         JPanel panel = new JPanel(new MigLayout("fillx, wrap 2", "[][fill,grow]"));
         panel.setBorder(BorderFactory.createTitledBorder(
                 JMeterUtils.getResString("xpath2_extractor_properties")));