Apply project formatting rules for ternary operator
Discovered via RegEx: ^\s+\?
This commit is contained in:
@@ -238,10 +238,9 @@ class AotServicesTests {
|
||||
|
||||
@Override
|
||||
public Enumeration<URL> getResources(String name) throws IOException {
|
||||
return (!"META-INF/spring/aot.factories".equals(name))
|
||||
? super.getResources(name)
|
||||
: super.getResources("org/springframework/beans/factory/aot/"
|
||||
+ this.factoriesName);
|
||||
return (!"META-INF/spring/aot.factories".equals(name) ?
|
||||
super.getResources(name) :
|
||||
super.getResources("org/springframework/beans/factory/aot/" + this.factoriesName));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user