Skip to content

Commit

Permalink
seq
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenliang123 committed Nov 28, 2023
1 parent 5e9e703 commit 6a49bfa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ object CommandLineUtils {
* Assemble key value pair with config option prefix
*/
def confKeyValue(key: String, value: String, confOption: String = CONF): Iterable[String] =
Stream(confOption, genKeyValuePair(key, value))
Seq(confOption, genKeyValuePair(key, value))

def confKeyValueStr(key: String, value: String, confOption: String = CONF): String =
confKeyValue(key, value, confOption).mkString(" ")
Expand Down

0 comments on commit 6a49bfa

Please sign in to comment.