Skip to content

Commit 867e517

Browse files
committed
Remove redundant null declaration
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 867e517

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)