1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-18 14:31:23 +02:00

Update text in unsupported operation exception

The operations will never be implemented.
This commit is contained in:
Erik Johansson
2018-09-30 20:31:59 +02:00
parent bb0f3f455a
commit 240a057245

View File

@@ -111,20 +111,19 @@ public class ScaleDatabaseProvider extends android.content.ContentProvider {
return cursor;
}
@Override
public int delete(Uri uri, String selection, String[] selectionArgs) {
throw new UnsupportedOperationException("Not yet implemented");
throw new UnsupportedOperationException("Not supported");
}
@Override
public Uri insert(Uri uri, ContentValues values) {
throw new UnsupportedOperationException("Not yet implemented");
throw new UnsupportedOperationException("Not supported");
}
@Override
public int update(Uri uri, ContentValues values, String selection,
String[] selectionArgs) {
throw new UnsupportedOperationException("Not yet implemented");
throw new UnsupportedOperationException("Not supported");
}
}