Skip to content

Commit

Permalink
refactor: Minimal indentation for SourceSpecs text blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
2 people authored and app committed Jan 5, 2024
1 parent 1fd181f commit 656a61d
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,20 +70,20 @@ void replaceMessage() {
//language=java
java(
"""
import javax.validation.constraints.*;
class Test {
@NotNull(message = "Resource Code {javax.validation.constraints.NotNull.message}")
private String resourceCode;
}
import javax.validation.constraints.*;
class Test {
@NotNull(message = "Resource Code {javax.validation.constraints.NotNull.message}")
private String resourceCode;
}
""",
"""
import javax.validation.constraints.*;
class Test {
@NotNull(message = "Resource Code {jakarta.validation.constraints.NotNull.message}")
private String resourceCode;
}
import javax.validation.constraints.*;
class Test {
@NotNull(message = "Resource Code {jakarta.validation.constraints.NotNull.message}")
private String resourceCode;
}
"""
)
);
Expand Down

0 comments on commit 656a61d

Please sign in to comment.