diff options
author | Arun Isaac | 2023-11-07 11:35:52 +0000 |
---|---|---|
committer | Arun Isaac | 2023-11-07 11:35:52 +0000 |
commit | ea8611f2cb62c378848b6a2ab90afb40bd10dc70 (patch) | |
tree | 21e10012926557a2f020705d29ce6ee6c28f2ee3 | |
parent | 458011fbb95610d1afbcc077df938213e7426582 (diff) | |
download | ccwl-ea8611f2cb62c378848b6a2ab90afb40bd10dc70.tar.gz ccwl-ea8611f2cb62c378848b6a2ab90afb40bd10dc70.tar.lz ccwl-ea8611f2cb62c378848b6a2ab90afb40bd10dc70.zip |
ccwl: Delete unused input=? function.
* ccwl/ccwl.scm (input=?): Delete function.
-rw-r--r-- | ccwl/ccwl.scm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ccwl/ccwl.scm b/ccwl/ccwl.scm index 793facd..03e1264 100644 --- a/ccwl/ccwl.scm +++ b/ccwl/ccwl.scm @@ -443,10 +443,6 @@ identifiers defined in the commands." (make-output id type #f #f #f))) (parameters->id+type (assoc-ref yaml "outputs")))))) -(define (input=? input1 input2) - (eq? (input-id input1) - (input-id input2))) - (define (function-inputs function) "Return the list of inputs accepted by @var{function}, a @code{<command>} or @code{<cwl-workflow>} object." |