Skip to content

Commit

Permalink
Remove unnecessary comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaMaciaszek committed Aug 22, 2024
1 parent 0fd5144 commit 9ad2104
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,9 @@
* @author Olga Maciaszek-Sharma
*/
// TODO: Handle AOT
// TODO: remove abstract supertype or move to a shared package
public abstract class AbstractInterfaceClientsImportRegistrar
implements ImportBeanDefinitionRegistrar, EnvironmentAware, ResourceLoaderAware {

// TODO: work on IntelliJ plugin /other plugins/ to show that the client beans are
// autoconfigured

private static final String INTERFACE_CLIENT_SUFFIX = "InterfaceClient";

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

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

0 comments on commit 9ad2104

Please sign in to comment.