Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect formatting in Application.java #9

Open
maheshshelke opened this issue Jun 20, 2024 · 0 comments
Open

Incorrect formatting in Application.java #9

maheshshelke opened this issue Jun 20, 2024 · 0 comments

Comments

@maheshshelke
Copy link
Contributor

The indentation in Application.java class for the following function is not correct.

`
@bean
public RegistryEventConsumer myRetryRegistryEventConsumer() {

return new RegistryEventConsumer<Retry>() {
    @Override
    public void onEntryAddedEvent(EntryAddedEvent<Retry> entryAddedEvent) {
        entryAddedEvent.getAddedEntry().getEventPublisher().onEvent(event -> LOG.info(event.toString()));
    }

    @Override
    public void onEntryRemovedEvent(EntryRemovedEvent<Retry> entryRemoveEvent) {

    }

    @Override
    public void onEntryReplacedEvent(EntryReplacedEvent<Retry> entryReplacedEvent) {

    }
};

}

}`

AC:

Fix the indentation.

maheshshelke added a commit to maheshshelke/resilience4j-spring-boot3-demo that referenced this issue Jun 20, 2024
- Indentation were not current in java file
RobWin added a commit that referenced this issue Jun 24, 2024
Issue #9: Fixed formatting in Application.java
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant