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

Fixed AbstractFilterable#isFiltered javadoc (#3300) #3456

Merged
merged 4 commits into from
Mar 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ public boolean hasFilter() {
/**
* Determine if the LogEvent should be processed or ignored.
* @param event The LogEvent.
* @return true if the LogEvent should be processed.
* @return {@code true} if the event is filtered and should be ignored; otherwise, {@code false} if
* it should be processed
*/
@Override
public boolean isFiltered(final LogEvent event) {
Expand Down
10 changes: 10 additions & 0 deletions src/changelog/.2.x.x/3300_fix-javadoc.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<entry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="fixed">
<issue id="3300" link="https://github.com/apache/logging-log4j2/issues/3300"/>
<description format="asciidoc">
Corrected @return javadoc for AbstractFilterable#isFiltered().
</description>
</entry>