Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

Commit

Permalink
Added missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
funmark committed Jul 11, 2018
1 parent 42de883 commit e9475d6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Path;
import java.util.List;

/**
* Retrofit interface for Bulk Activity calls against the Constant Contact API.
Expand Down Expand Up @@ -48,7 +49,7 @@ public interface BulkActivitiesService {
/**
* Get list of {@link Activity}
*
* @return a Call that returns List<Activity>
* @return a Call that returns Activity List
*/
@GET("v2/activities")
Call<List<Activity>> getActivityStatuses();
Expand Down

0 comments on commit e9475d6

Please sign in to comment.