Remove incorrect annotation import.

Test: n/a
Relnotes=n/a

Change-Id: I67279640e54b2676f13c6997111c5b6809527475
diff --git a/room/runtime/src/main/java/androidx/room/QueryInterceptorOpenHelperFactory.java b/room/runtime/src/main/java/androidx/room/QueryInterceptorOpenHelperFactory.java
index 0e573fa..5d94cd1 100644
--- a/room/runtime/src/main/java/androidx/room/QueryInterceptorOpenHelperFactory.java
+++ b/room/runtime/src/main/java/androidx/room/QueryInterceptorOpenHelperFactory.java
@@ -19,8 +19,6 @@
 import androidx.annotation.NonNull;
 import androidx.sqlite.db.SupportSQLiteOpenHelper;
 
-import org.jetbrains.annotations.NotNull;
-
 import java.util.concurrent.Executor;
 
 /**
@@ -45,7 +43,7 @@
     @NonNull
     @Override
     public SupportSQLiteOpenHelper create(
-            @NonNull @NotNull SupportSQLiteOpenHelper.Configuration configuration) {
+            @NonNull SupportSQLiteOpenHelper.Configuration configuration) {
         return new QueryInterceptorOpenHelper(mDelegate.create(configuration), mQueryCallback,
                 mQueryCallbackExecutor);
     }