Skip to content

Commit dd4a218

Browse files
committed
fix missing }
1 parent 223a794 commit dd4a218

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/java/org/elasticsearch/index/mapper/vectors/TokenPruningConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,7 @@ public static TokenPruningConfig parseFromMap(Map<String, Object> pruningConfigM
212212
}
213213

214214
try {
215-
XContentParser parser = new MapXContentParser(
216-
NamedXContentRegistry.EMPTY,
215+
XContentParser parser = new MapXContentParser(NamedXContentRegistry.EMPTY,
217216
DeprecationHandler.IGNORE_DEPRECATIONS,
218217
pruningConfigMap,
219218
XContentType.JSON
@@ -226,4 +225,5 @@ public static TokenPruningConfig parseFromMap(Map<String, Object> pruningConfigM
226225
}
227226
throw new ElasticsearchException(exc);
228227
}
228+
}
229229
}

0 commit comments

Comments
 (0)