refactor(AccountNotificationsListFragment.java): add getWebUri method back

This commit is contained in:
LucasGGamerM
2025-05-19 10:04:31 -03:00
parent 548e61c0c7
commit ef7f4d98e0

View File

@@ -2,6 +2,7 @@ package org.joinmastodon.android.fragments;
import android.content.res.ColorStateList;
import android.graphics.drawable.Drawable;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.view.LayoutInflater;
@@ -175,4 +176,10 @@ public class AccountNotificationsListFragment extends BaseNotificationsListFragm
item.setIconTintList(ColorStateList.valueOf(tintColor));
}
}
// MOSHIDON: what is this file even supposed to be????
@Override
public Uri getWebUri(Uri.Builder base){
return null; // TODO
}
}