remove j.mp domain from BitlyURLShortener

This commit is contained in:
nicegamer7 2022-03-05 09:35:10 -05:00 committed by GitHub
parent 5d6bc806f0
commit 5ec27db284
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -27,7 +27,6 @@ class BitlyURLShortener extends URLShortener {
@Override
String encodeData(String data) {
JSONObject json = new JSONObject();
json.put("domain", "j.mp");
json.put("long_url", data);
return json.toJSONString();
}