File tree 3 files changed +5
-3
lines changed
core/src/main/scala/avrohugger/input/parsers
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Scala Steward: Reformat with scalafmt 3.8.4
2
+ 0d0a2f62957fef413d8d1a1e188e67e42308ea62
Original file line number Diff line number Diff line change 1
- version =3.8 .3
1
+ version =3.8 .4
2
2
style = defaultWithAlign
3
3
maxColumn = 100
4
4
runner {
Original file line number Diff line number Diff line change @@ -141,12 +141,12 @@ class FileInputParser {
141
141
protocol : Protocol ,
142
142
importedSchemaOrProtocols : List [Either [Schema , Protocol ]]
143
143
) = {
144
- val imported = importedSchemaOrProtocols.flatMap( avroDef => {
144
+ val imported = importedSchemaOrProtocols.flatMap { avroDef =>
145
145
avroDef match {
146
146
case Left (importedSchema) => List (importedSchema)
147
147
case Right (importedProtocol) => importedProtocol.getTypes.asScala
148
148
}
149
- })
149
+ }
150
150
val types = protocol.getTypes.asScala.toList
151
151
val localTypes = imported.foldLeft(types) { (remaining, imported) =>
152
152
remaining.filterNot(remainingType => remainingType == imported)
You can’t perform that action at this time.
0 commit comments