Revert "The placeholders are better. But the api thing isnt working"

This reverts commit a3267f6cd3.
This commit is contained in:
LucasGGamerM
2022-12-12 20:40:10 -03:00
parent 0115656d67
commit cf27c6bbf3
3 changed files with 11 additions and 36 deletions

View File

@@ -1,9 +1,10 @@
package org.joinmastodon.android.api.requests.lists;
import org.joinmastodon.android.api.MastodonAPIRequest;
import java.util.List;
public class DeleteList extends MastodonAPIRequest<Object> {
public DeleteList(String listId){
public class RemoveList extends MastodonAPIRequest<Object> {
public RemoveList(String listId){
super(HttpMethod.DELETE, "/lists/"+listId, Object.class);
}
}