Changing static public function for QueryBuilder to private

This commit is contained in:
Bradyn Glines
2019-07-07 21:21:16 -05:00
parent ad65ade09f
commit 6b39166105

View File

@ -31,7 +31,7 @@ export class QueryBuilder {
return this.returnResponse(t.resource(), params);
}
public static returnResponse(resource: string, params: IQuery[], single?: boolean): Promise<any> {
private static returnResponse(resource: string, params: IQuery[], single?: boolean): Promise<any> {
return Client.get(resource, params)
.then(response => {
if (single) {