Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
Signed-off-by: Sandesh Kumar <[email protected]>
  • Loading branch information
sandeshkr419 committed Jun 26, 2024
1 parent f507270 commit 520235d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion libs/grok/src/main/java/org/opensearch/grok/Grok.java
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,12 @@ private static void throwExceptionForCircularReference(String patternName, Strin
throwExceptionForCircularReference(patternName, pattern, null, null);
}

private static void throwExceptionForCircularReference(String patternName, String pattern, String originPatternName, List<String> path) {
private static void throwExceptionForCircularReference(
String patternName,
String pattern,
String originPatternName,
List<String> path
) {
StringBuilder message = new StringBuilder("circular reference in pattern [");
message.append(patternName).append("][").append(pattern).append("]");
if (originPatternName != null) {
Expand Down

0 comments on commit 520235d

Please sign in to comment.