Skip to content

Commit

Permalink
Fix XPath default de-serializer issue (#5339) [ci fast]
Browse files Browse the repository at this point in the history

Signed-off-by: jorgee <[email protected]>
Signed-off-by: Paolo Di Tommaso <[email protected]>
Co-authored-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
jorgee and pditommaso authored Oct 2, 2024
1 parent 7c45381 commit 290f2d0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/nf-httpfs/src/main/nextflow/file/http/XPath.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ class XPath implements Path {

private String query

/*
* Only needed to prevent serialization issues - see https://github.com/nextflow-io/nextflow/issues/5208
*/
protected XPath(){}

XPath(XFileSystem fs, String path) {
this(fs, path, EMPTY)
}
Expand Down

0 comments on commit 290f2d0

Please sign in to comment.