Skip to content

Commit da0bcf7

Browse files
author
Josh Deffibaugh
committed
Use old constructor for db manager
1 parent e25d5f6 commit da0bcf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

event-handler/src/main/java/com/optimizely/ab/android/event_handler/EventSQLiteOpenHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class EventSQLiteOpenHelper extends SQLiteOpenHelper {
5151

5252
@RequiresApi(api = Build.VERSION_CODES.HONEYCOMB)
5353
EventSQLiteOpenHelper(@NonNull Context context, @NonNull String projectId, @Nullable SQLiteDatabase.CursorFactory factory, int version, @NonNull Logger logger) {
54-
super(context, String.format(DB_NAME, projectId), factory, version, null);
54+
super(context, String.format(DB_NAME, projectId), factory, version);
5555
this.logger = logger;
5656
this.projectId = projectId;
5757
this.context = context;

0 commit comments

Comments
 (0)