You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2021/06/15 14:07:27 UTC

[incubator-hop] branch master updated: HOP-2953 : Allow inclusion of optional header in the .hpl/.hwf file format (test fix)

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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 64889fc  HOP-2953 : Allow inclusion of optional header in the .hpl/.hwf file format (test fix)
     new 6b38652  Merge pull request #872 from mattcasters/master
64889fc is described below

commit 64889fcbf33102a5ade95fe28ef2730df6c2b2e7
Author: Matt Casters <ma...@gmail.com>
AuthorDate: Tue Jun 15 16:02:31 2021 +0200

    HOP-2953 : Allow inclusion of optional header in the .hpl/.hwf file format (test fix)
---
 .../hop/workflow/actions/checkfilelocked/ActionCheckFilesLocked.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/actions/checkfilelocked/src/main/java/org/apache/hop/workflow/actions/checkfilelocked/ActionCheckFilesLocked.java b/plugins/actions/checkfilelocked/src/main/java/org/apache/hop/workflow/actions/checkfilelocked/ActionCheckFilesLocked.java
index bcdd12c..e16f7aa 100644
--- a/plugins/actions/checkfilelocked/src/main/java/org/apache/hop/workflow/actions/checkfilelocked/ActionCheckFilesLocked.java
+++ b/plugins/actions/checkfilelocked/src/main/java/org/apache/hop/workflow/actions/checkfilelocked/ActionCheckFilesLocked.java
@@ -102,7 +102,7 @@ public class ActionCheckFilesLocked extends ActionBase implements Cloneable, IAc
     filemasks = new String[nrFields];
   }
 
-  public String getXml(IVariables variables) {
+  public String getXml() {
     StringBuilder xml = new StringBuilder(300);
 
     xml.append(super.getXml());