Skip to content

Commit

Permalink
Reduce IDE warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Oct 6, 2024
1 parent f81c6c3 commit 92c687a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ void shouldChangeSwaggerArtifacts() {
java(
"""
package example.org;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ApiModel(value="ApiModelExampleValue", description="ApiModelExampleDescription")
class Example {
@ApiModelProperty(value = "ApiModelPropertyExampleValue", position = 1)
Expand All @@ -60,9 +60,9 @@ class Example {
""",
"""
package example.org;
import io.swagger.v3.oas.annotations.media.Schema;
@Schema(name="ApiModelExampleValue", description="ApiModelExampleDescription")
class Example {
@Schema(description = "ApiModelPropertyExampleValue")
Expand Down

0 comments on commit 92c687a

Please sign in to comment.