Skip to content

Commit

Permalink
Make FilteredLog extensible again.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Nov 29, 2023
1 parent f4ce045 commit d55e4e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/hm/hafner/util/FilteredLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*
* @author Ullrich Hafner
*/
public final class FilteredLog implements Serializable {
public class FilteredLog implements Serializable {
private static final long serialVersionUID = -8552323621953159904L;

private static final int DEFAULT_MAX_LINES = 20;
Expand Down
1 change: 1 addition & 0 deletions src/test/java/edu/hm/hafner/util/FilteredLogTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ void shouldAdhereToEquals() {
.withIgnoredFields("lock")
.withPrefabValues(ReentrantLock.class, new ReentrantLock(), new ReentrantLock())
.suppress(Warning.NONFINAL_FIELDS)
.suppress(Warning.STRICT_INHERITANCE)
.verify();
}

Expand Down

0 comments on commit d55e4e2

Please sign in to comment.