Skip to content

Commit

Permalink
Made stripper serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
arkanovicz committed Jan 1, 2021
1 parent fd6df4e commit f2b6617
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.republicate.slf4j.impl;


import java.io.Serializable;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
Expand All @@ -24,7 +25,7 @@
* </ul>
*/

public class StackTraceStripper
public class StackTraceStripper implements Serializable
{
private NavigableSet<String> unwantedPackages = new TreeSet<>();

Expand Down

0 comments on commit f2b6617

Please sign in to comment.