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/amazon/java/org/tasks/location/GeofenceApi.java

27 lines
369 B
Java

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