Skip to content

Commit 4565944

Browse files
committed
Fix formatting
1 parent 2f5f224 commit 4565944

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jackson/JsonMixinModuleEntries.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ public void doWithEntry(ClassLoader classLoader, BiConsumer<Class<?>, Class<?>>
110110
}
111111

112112
private Class<?> resolveClassNameIfNecessary(Object nameOrType, ClassLoader classLoader) {
113-
return (nameOrType instanceof Class<?> type) ? type : ClassUtils.resolveClassName((String) nameOrType, classLoader);
113+
return (nameOrType instanceof Class<?> type) ? type
114+
: ClassUtils.resolveClassName((String) nameOrType, classLoader);
114115
}
115116

116117
/**

0 commit comments

Comments
 (0)