Skip to content

Commit 2365b9b

Browse files
authored
Remove redundant null declaration (#6281)
Since the constructor is private, and the builder sets it to null if missing, this declaration is actually redundant. b/368368914
1 parent 3c842c7 commit 2365b9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase-vertexai/src/main/kotlin/com/google/firebase/vertexai/type/GenerationConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ private constructor(
7878
val maxOutputTokens: Int?,
7979
val stopSequences: List<String>?,
8080
val responseMimeType: String?,
81-
val responseSchema: Schema? = null,
81+
val responseSchema: Schema?,
8282
) {
8383

8484
/**

0 commit comments

Comments
 (0)