Fix compile error introduced by #1745. (#1747)

* Fix compile error in #1745.

Closes #1745.
This commit is contained in:
Michael Reiche
2023-05-31 09:18:59 -07:00
committed by GitHub
parent 1087b2d20d
commit 336014c65e

View File

@@ -27,6 +27,7 @@ import java.time.Duration;
import java.util.Map;
import java.util.Optional;
import com.couchbase.client.core.api.query.CoreQueryContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.annotation.AnnotatedElementUtils;
@@ -571,5 +572,4 @@ public class OptionsBuilder {
&& (collection == null || CollectionIdentifier.DEFAULT_COLLECTION.equals(collection)) ? null
: CoreQueryContext.of(bucketName, scope);
}
}
}