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
timtebeek and TeamModerne committed Jan 5, 2024
1 parent c003ec5 commit e47737d
Showing 1 changed file with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,24 +221,24 @@ void changeLombokLogAnnotation() {
//language=java
java(
"""
import lombok.extern.slf4j.Slf4j;
import lombok.extern.slf4j.Slf4j;
@Slf4j
class Test {
void method() {
log.info("uh oh");
}
}
@Slf4j
class Test {
void method() {
log.info("uh oh");
}
}
""",
"""
import lombok.extern.log4j.Log4j2;
import lombok.extern.log4j.Log4j2;
@Log4j2
class Test {
void method() {
log.info("uh oh");
}
}
@Log4j2
class Test {
void method() {
log.info("uh oh");
}
}
"""
)
);
Expand Down

0 comments on commit e47737d

Please sign in to comment.