Skip to content

Commit a768675

Browse files
Merlin Rabensmerlinrabens
authored andcommitted
Remove comments
1 parent 7b3b64c commit a768675

File tree

1 file changed

+0
-12
lines changed
  • src/main/scala/com/intenthq/action_processor/integrationsV2

1 file changed

+0
-12
lines changed

src/main/scala/com/intenthq/action_processor/integrationsV2/CsvFeed.scala

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ import scala.jdk.CollectionConverters._
1111

1212
abstract class CsvFeed[O] extends Feed[Iterable[String], O] {
1313

14-
// protected val csvResource: String
15-
16-
// private lazy val typeFactory = new ReflectionHelpers.CaseClassFactory[I]
17-
1814
protected lazy val csvReader: CsvReader = new CsvReader
1915

2016
protected def rows: Stream[IO, String]
@@ -29,12 +25,4 @@ abstract class CsvFeed[O] extends Feed[Iterable[String], O] {
2925

3026
override def inputStream: Stream[IO, Iterable[String]] =
3127
rows.evalMap(csvParse)
32-
33-
// protected def fromString: fs2.Pipe[IO, Iterable[String], I] =
34-
// sourceStream => {
35-
// sourceStream.evalMap { line =>
36-
// val params = .productIterator.toList
37-
// IO(typeFactory.buildWith(params))
38-
// }
39-
// }
4028
}

0 commit comments

Comments
 (0)