1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2025-07-07 14:46:37 +00:00

Fix mandatory constructor

This commit is contained in:
Loic Blot 2016-03-18 11:44:49 +01:00
parent 1cced8b2e4
commit ea27e85d94

View File

@ -27,7 +27,8 @@ import android.support.annotation.NonNull;
import fr.unix_experience.owncloud_sms.prefs.OCSMSSharedPrefs;
public class SmsDataProvider extends ContentProvider {
// WARNING: mandatory
public SmsDataProvider() {}
public SmsDataProvider (Context ct) {
super();
_context = ct;