Skip to content

Commit 1dc2fe6

Browse files
committed
Adjust method override in OpenAPIRuntimeBuilder
Signed-off-by: Michael Edgar <[email protected]>
1 parent 81a1f8e commit 1dc2fe6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/smallrye-openapi/runtime/src/main/java/io/quarkus/smallrye/openapi/runtime/OpenAPIRuntimeBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
*/
1212
class OpenAPIRuntimeBuilder extends SmallRyeOpenAPI.Builder {
1313
@Override
14-
public <V, A extends V, O extends V, AB, OB> SmallRyeOpenAPI build() {
14+
public SmallRyeOpenAPI build(boolean unmodifiable) {
1515
var ctx = super.getContext();
1616
buildPrepare(ctx);
1717
buildStaticModel(ctx);
18-
return buildFinalize(ctx);
18+
return buildFinalize(ctx, unmodifiable);
1919
}
2020
}

0 commit comments

Comments
 (0)