Skip to content

Commit

Permalink
Fix a redundant println().
Browse files Browse the repository at this point in the history
  • Loading branch information
yruslan committed Feb 12, 2024
1 parent 35b7592 commit 35d056a
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ object CsvUtils {
obj.getClass.getDeclaredFields
.filterNot(_.getName.contains('$'))
.map(field => {
println(field.getName)
field.setAccessible(true)
field.get(obj).toString.replace(separator, ' ')
}).mkString("", s"$separator", "\n")
Expand Down

0 comments on commit 35d056a

Please sign in to comment.