Skip to content

Commit aa58af7

Browse files
committed
Fix
1 parent 41283c8 commit aa58af7

File tree

1 file changed

+2
-2
lines changed
  • firebase-firestore/src/main/java/com/google/firebase/firestore

1 file changed

+2
-2
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/Pipeline.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ private constructor(
143143

144144
fun execute(): Task<PipelineSnapshot> = execute(null)
145145

146-
fun execute(options: RealtimePipelineOptions): Task<PipelineSnapshot> = execute(options.options)
146+
fun execute(options: PipelineOptions): Task<PipelineSnapshot> = execute(options.options)
147147

148148
internal fun documentReference(key: DocumentKey): DocumentReference {
149149
return DocumentReference(key, firestore)
@@ -773,7 +773,7 @@ internal constructor(
773773

774774
fun execute(): Task<PipelineSnapshot> = execute(null)
775775

776-
fun execute(options: PipelineOptions): Task<PipelineSnapshot> = execute(options.options)
776+
fun execute(options: RealtimePipelineOptions): Task<PipelineSnapshot> = execute(options.options)
777777

778778
fun limit(limit: Int): RealtimePipeline = append(LimitStage(limit))
779779

0 commit comments

Comments
 (0)