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/com/todoroo/astrid/gtasks/GtasksListService.java

27 lines
468 B
Java

package com.todoroo.astrid.gtasks;
import java.util.Collections;
import java.util.List;
import javax.inject.Inject;
public class GtasksListService {
@Inject
public GtasksListService() {
}
public List<GtasksList> getLists() {
return Collections.emptyList();
}
public GtasksList getList(long storeId) {
return null;
}
public List<GtasksList> getSortedGtasksList() {
return Collections.emptyList();
}
}