Skip to content

Commit

Permalink
Fix issue 14519:Fix wildcart import. Signed-off-by: Vatsal <vatsal.v.…
Browse files Browse the repository at this point in the history
  • Loading branch information
imvtsl committed Jun 26, 2024
1 parent 112114f commit 4d8abd0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion server/src/main/java/org/opensearch/index/get/GetResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@
import org.opensearch.search.lookup.SourceLookup;

import java.io.IOException;
import java.util.*;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Objects;
import java.util.Locale;

import static java.util.Collections.emptyMap;
import static org.opensearch.core.xcontent.XContentParserUtils.ensureExpectedToken;
Expand Down

0 comments on commit 4d8abd0

Please sign in to comment.