thiagolocatelli / parse4j

Java Library to deal with Parse (parse.com) REST API
http://thiagolocatelli.github.io/parse4j
143 stars 117 forks source link

ParseBatch & ParseBatchCommand still using Parse.com URL #77

Closed abdielou closed 4 years ago

abdielou commented 7 years ago

ParseBatchCommand is still using Parse.com URL

Lines 20-24

    public String getUrl(){
        String base = ParseConstants.API_ENDPOINT;
        String version = ParseConstants.API_VERSION;
        return base + "/" +version + "/" + "batch";
    }