Skip to content

Commit

Permalink
Now it’s spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-krecan committed Nov 15, 2024
1 parent fce0240 commit e781470
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
env:
# Kotlin needs access to java.util
MAVEN_OPTS: --add-opens java.base/java.util=ALL-UNNAMED
run: mvn clean test spotless:check javadoc:javadoc
run: mvn spotless:check clean test javadoc:javadoc
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: always() # always run even if the previous step fails
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ public String[] selectImports(AnnotationMetadata metadata) {
metadata.getAnnotationAttributes(EnableSchedulerLock.class.getName(), false));
InterceptMode mode = attributes.getEnum("interceptMode");
return switch (mode) {
case PROXY_METHOD -> new String[]{
case PROXY_METHOD -> new String[] {
AutoProxyRegistrar.class.getName(),
LockConfigurationExtractorConfiguration.class.getName(),
MethodProxyLockConfiguration.class.getName()
};
case PROXY_SCHEDULER -> new String[]{
case PROXY_SCHEDULER -> new String[] {
AutoProxyRegistrar.class.getName(),
LockConfigurationExtractorConfiguration.class.getName(),
SchedulerProxyLockConfiguration.class.getName(),
Expand Down

0 comments on commit e781470

Please sign in to comment.