Fixing minor error

This commit is contained in:
Sahil Palvia 2017-09-18 15:02:46 -07:00
parent 9def913453
commit c70ab1fc72

View file

@ -8,5 +8,5 @@ import java.util.concurrent.Callable;
* This class uses the GetRecordsRetrievalStrategy class to retrieve the next set of records and update the cache.
*/
public interface GetRecordsRetriever {
GetRecordsResult getNextRecords(int maxRecords)
GetRecordsResult getNextRecords(int maxRecords);
}