Skip to content

Commit a8992f1

Browse files
committed
Fix compile error introduced by #1745. (#1747)
* Fix compile error in #1745. Closes #1745.
1 parent 5ea899e commit a8992f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/springframework/data/couchbase/core/query/OptionsBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import java.util.Map;
2828
import java.util.Optional;
2929

30+
import com.couchbase.client.core.api.query.CoreQueryContext;
3031
import org.slf4j.Logger;
3132
import org.slf4j.LoggerFactory;
3233
import org.springframework.core.annotation.AnnotatedElementUtils;
@@ -567,5 +568,4 @@ public static CoreQueryContext queryContext(String scope, String collection, Str
567568
&& (collection == null || CollectionIdentifier.DEFAULT_COLLECTION.equals(collection)) ? null
568569
: CoreQueryContext.of(bucketName, scope);
569570
}
570-
}
571571
}

0 commit comments

Comments
 (0)