Skip to content

Commit

Permalink
removed unused field - inputIds
Browse files Browse the repository at this point in the history
  • Loading branch information
sandepat committed Jul 3, 2024
1 parent a2c7841 commit 11992a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ public class BoutiquesApplication implements IsSerializable {
private Map<String, String> tags = new HashMap<>();
private String jsonFile;
private Set<String> vipDotInputIds;
private Set<String> inputIds;
private boolean vipDotIncludesResultsDir;

private BoutiquesApplicationExtensions boutiquesExtensions;
Expand Down
12 changes: 6 additions & 6 deletions vip-portal/src/main/resources/vm/gwendia-standalone.vm
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,18 @@ if ( result.startsWith("/") || result.startsWith("lfn:") ) {
#if($tools.getVipDotResultDirs)
<dot>
<port name="results-directory" />
#foreach($input in $tool.getInputs())
#if($tool.getVipDotInputIds().contains($input.getId()))
#foreach($input in $tool.getInputs())
#if($tool.getVipDotInputIds().contains($input.getId()))
<port name="$input.getId()"/>
#end
#end
#end
#end
</dot>
#else
<port name="results-directory" />
#foreach($input in $tool.getInputs())
#if(!$tool.getVipDotInputIds().contains($input.getId()))
#if(!$tool.getVipDotInputIds().contains($input.getId()))
<port name="$input.getId()"/>
#end
#end
#end
#end
#if($tool.getVipDotInputIds() && !$tool.getVipDotInputIds().isEmpty() && !$tools.getVipDotResultDirs)
Expand Down

0 comments on commit 11992a0

Please sign in to comment.