Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
wsargent committed Dec 22, 2024
1 parent 5524884 commit 513be38
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
import echopraxia.api.Field;
import echopraxia.jsonpath.AbstractJsonPathFinder;
import echopraxia.logging.api.LoggingContextWithFindPathMethods;
import org.jetbrains.annotations.NotNull;
import org.slf4j.Marker;

import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;
import org.jetbrains.annotations.NotNull;
import org.slf4j.Marker;

public abstract class AbstractEventLoggingContext extends AbstractJsonPathFinder
implements LoggingContextWithFindPathMethods {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public interface JsonPathCondition extends Condition {
boolean jsonPathTest(Level level, LoggingContextWithFindPathMethods context);

default boolean test(Level level, LoggingContext context) {
return jsonPathTest(level, (LoggingContextWithFindPathMethods) context);
return jsonPathTest(level, (LoggingContextWithFindPathMethods) context);
}

@Contract(pure = true)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package echopraxia.logstash;

import echopraxia.api.*;
import echopraxia.logging.api.JsonPathCondition;
import echopraxia.logging.api.Condition;
import echopraxia.logging.api.JsonPathCondition;
import echopraxia.logging.api.Level;
import echopraxia.logging.api.LoggingContext;
import java.util.concurrent.TimeUnit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import echopraxia.logging.api.Level;
import echopraxia.logging.api.LoggingContext;
import echopraxia.logging.api.LoggingContextWithFindPathMethods;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import echopraxia.logging.api.Level;
import echopraxia.logging.api.LoggingContext;
import echopraxia.logging.api.LoggingContextWithFindPathMethods;

import java.util.*;
import java.util.function.Function;

Expand Down

0 comments on commit 513be38

Please sign in to comment.