Remove non necessary @MainThread annotations

This commit is contained in:
Maxime NATUREL 2022-07-04 15:33:52 +02:00
parent e26759fa89
commit bad4eba153
1 changed files with 0 additions and 2 deletions

View File

@ -62,13 +62,11 @@ interface LocationSharingService {
/**
* Returns a LiveData on the list of current running live location shares.
*/
@MainThread
fun getRunningLiveLocationShareSummaries(): LiveData<List<LiveLocationShareAggregatedSummary>>
/**
* Returns a LiveData on the live location share summary with the given eventId.
* @param beaconInfoEventId event id of the initial beacon info state event
*/
@MainThread
fun getLiveLocationShareSummary(beaconInfoEventId: String): LiveData<Optional<LiveLocationShareAggregatedSummary>>
}