2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-22 09:58:08 +00:00

Simplify constructor call

This commit is contained in:
Albert Vaca Cintora 2023-05-10 14:52:34 +02:00
parent ed0f97de1b
commit e409ec37eb

View File

@ -7,7 +7,6 @@ public class RunCommandWidgetDataProviderService extends RemoteViewsService {
@Override @Override
public RemoteViewsFactory onGetViewFactory(Intent intent) { public RemoteViewsFactory onGetViewFactory(Intent intent) {
return new RunCommandWidgetDataProvider(this, intent);
return (new RunCommandWidgetDataProvider(RunCommandWidgetDataProviderService.this, intent));
} }
} }