You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/app/src/generic/java/org/tasks/location/GeofenceApi.java

29 lines
402 B
Java

package org.tasks.location;
import org.tasks.data.Location;
import java.util.List;
import javax.inject.Inject;
@SuppressWarnings("EmptyMethod")
public class GeofenceApi {
@Inject
public GeofenceApi() {
}
public void register(List<Location> activeGeofences) {
}
public void cancel(Location geofence) {
}
public void cancel(List<Location> geofences) {
}
}