Skip to content

Commit 9ad2104

Browse files
committed
Remove unnecessary comments.
1 parent 0fd5144 commit 9ad2104

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/interfaceclients/AbstractInterfaceClientsImportRegistrar.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,9 @@
5151
* @author Olga Maciaszek-Sharma
5252
*/
5353
// TODO: Handle AOT
54-
// TODO: remove abstract supertype or move to a shared package
5554
public abstract class AbstractInterfaceClientsImportRegistrar
5655
implements ImportBeanDefinitionRegistrar, EnvironmentAware, ResourceLoaderAware {
5756

58-
// TODO: work on IntelliJ plugin /other plugins/ to show that the client beans are
59-
// autoconfigured
60-
6157
private static final String INTERFACE_CLIENT_SUFFIX = "InterfaceClient";
6258

6359
private static final String BEAN_NAME_ATTRIBUTE_NAME = "beanName";
@@ -148,7 +144,6 @@ public void setResourceLoader(ResourceLoader resourceLoader) {
148144
protected abstract Class<?> getFactoryBeanClass();
149145

150146
private String buildBeanName(String clientId) {
151-
// TODO: research Normalizer form types
152147
String normalised = Normalizer.normalize(clientId, Normalizer.Form.NFD);
153148
String camelCased = CaseUtils.toCamelCase(normalised, false, '-', '_');
154149
return camelCased + INTERFACE_CLIENT_SUFFIX;

0 commit comments

Comments
 (0)