Skip to content

Commit 7d8b9c7

Browse files
committed
commented out unused debugging code
1 parent 3bb2196 commit 7d8b9c7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/utils.jl

+10-10
Original file line numberDiff line numberDiff line change
@@ -230,15 +230,15 @@ end
230230

231231

232232
# TODO cannot use AbstractString for some reasons
233-
"""
234-
Concatenate an array of strings to a single string
235-
"""
236-
concatenate(strArray::Vector{T} where T <: AbstractString, separator=",") =
237-
foldl((x, y) -> *(x, y, separator), "", strArray)[1:end-length(separator)]
233+
# """
234+
# Concatenate an array of strings to a single string
235+
# """
236+
# concatenate(strArray::Vector{T} where T <: AbstractString, separator=",") =
237+
# foldl((x, y) -> *(x, y, separator), "", strArray)[1:end-length(separator)]
238238

239-
"""
240-
Convert a dictionary to an array of k=>v strings
241-
"""
242-
stringarray(dict::Dict) =
243-
["$x => $y" for (x, y) in dict]
239+
# """
240+
# Convert a dictionary to an array of k=>v strings
241+
# """
242+
# stringarray(dict::Dict) =
243+
# ["$x => $y" for (x, y) in dict]
244244

0 commit comments

Comments
 (0)