Remove redundant semicolons
Closes gh-10422
This commit is contained in:
committed by
Stephane Nicoll
parent
bbee943972
commit
f3472beed8
@@ -74,6 +74,6 @@ public enum CacheType {
|
||||
/**
|
||||
* No caching.
|
||||
*/
|
||||
NONE;
|
||||
NONE
|
||||
|
||||
}
|
||||
|
||||
@@ -766,7 +766,7 @@ public class KafkaProperties {
|
||||
/**
|
||||
* Invokes the endpoint with a batch of ConsumerRecords.
|
||||
*/
|
||||
BATCH;
|
||||
BATCH
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -49,6 +49,6 @@ public enum StoreType {
|
||||
/**
|
||||
* No session data-store.
|
||||
*/
|
||||
NONE;
|
||||
NONE
|
||||
|
||||
}
|
||||
|
||||
@@ -122,7 +122,7 @@ public class HttpMessageConvertersTests {
|
||||
}
|
||||
}
|
||||
return converters;
|
||||
};
|
||||
}
|
||||
};
|
||||
List<Class<?>> converterClasses = new ArrayList<>();
|
||||
for (HttpMessageConverter<?> converter : converters) {
|
||||
@@ -152,7 +152,7 @@ public class HttpMessageConvertersTests {
|
||||
}
|
||||
}
|
||||
return converters;
|
||||
};
|
||||
}
|
||||
};
|
||||
List<Class<?>> converterClasses = new ArrayList<>();
|
||||
for (HttpMessageConverter<?> converter : extractFormPartConverters(
|
||||
|
||||
@@ -185,7 +185,7 @@ public class BasicErrorControllerDirectMockMvcTests {
|
||||
|
||||
@Pointcut("within(@org.springframework.stereotype.Controller *)")
|
||||
private void controllerPointCut() {
|
||||
};
|
||||
}
|
||||
|
||||
@Around("controllerPointCut()")
|
||||
public Object mvcAdvice(ProceedingJoinPoint pjp) throws Throwable {
|
||||
|
||||
Reference in New Issue
Block a user