Skip to content

Commit 1739f2b

Browse files
committed
Missing class change
1 parent 56031d7 commit 1739f2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firebase-vertexai/src/main/kotlin/com/google/firebase/vertexai/FirebaseVertexAIMultiResourceComponent.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ internal class FirebaseVertexAIMultiResourceComponent(
4242

4343
@GuardedBy("this") private val googleInstance: MutableList<FirebaseGoogleAI> = mutableListOf()
4444

45-
fun getVertexAI(location: String): FirebaseVertexAI =
45+
fun getVertexAI(location: String): FirebaseAI =
4646
synchronized(this) {
4747
vertexInstances[location]
4848
?: FirebaseVertexAI(
@@ -56,7 +56,7 @@ internal class FirebaseVertexAIMultiResourceComponent(
5656
.also { vertexInstances[location] = it }
5757
}
5858

59-
fun getGoogleAI(): FirebaseGoogleAI =
59+
fun getGoogleAI(): FirebaseAI =
6060
synchronized(this) {
6161
googleInstance.getOrNull(0)
6262
?: FirebaseGoogleAI(

0 commit comments

Comments
 (0)