Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import java.nio.file.Paths;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentSkipListMap;
import java.util.stream.Collectors;

public class OpenAPIHolderImpl implements OpenAPIHolder {
Expand All @@ -52,7 +53,7 @@ public class OpenAPIHolderImpl implements OpenAPIHolder {
public OpenAPIHolderImpl(Vertx vertx, HttpClient client, FileSystem fs, OpenAPILoaderOptions options) {
this.vertx = vertx;
absolutePaths = new ConcurrentHashMap<>();
externalSolvingRefs = new ConcurrentHashMap<>();
externalSolvingRefs = new ConcurrentSkipListMap<>();;
this.client = client;
this.fs = fs;
this.options = options;
Expand Down