Skip to content

Commit 3a7b90f

Browse files
committed
Fix formatting
1 parent ec3c5f4 commit 3a7b90f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

core/src/main/scala/org/locationtech/rasterframes/expressions/generators/RasterSourceToRasterRefs.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ case class RasterSourceToRasterRefs(children: Seq[Expression], bandIndexes: Seq[
8383
throw new java.lang.IllegalArgumentException(description, ex)
8484
}
8585

86-
override protected def withNewChildrenInternal(newChildren: IndexedSeq[Expression]): Expression = copy(children=newChildren)
86+
override protected def withNewChildrenInternal(newChildren: IndexedSeq[Expression]): Expression = copy(children = newChildren)
8787
}
8888

8989
object RasterSourceToRasterRefs {

core/src/main/scala/org/locationtech/rasterframes/expressions/generators/RasterSourceToTiles.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ case class RasterSourceToTiles(children: Seq[Expression], bandIndexes: Seq[Int],
8585
}
8686
}
8787

88-
override protected def withNewChildrenInternal(newChildren: IndexedSeq[Expression]): Expression = copy(children=newChildren)
88+
override protected def withNewChildrenInternal(newChildren: IndexedSeq[Expression]): Expression = copy(children = newChildren)
8989
}
9090

9191
object RasterSourceToTiles {
@@ -95,5 +95,3 @@ object RasterSourceToTiles {
9595
def apply(subtileDims: Option[Dimensions[Int]], bandIndexes: Seq[Int], bufferSize: Short, rrs: Column*): TypedColumn[Any, ProjectedRasterTile] =
9696
new Column(new RasterSourceToTiles(rrs.map(_.expr), bandIndexes, subtileDims, bufferSize)).as[ProjectedRasterTile]
9797
}
98-
99-

0 commit comments

Comments
 (0)