Delete old/unused sticker management v1 code.

Deletes the old code related to sticker management v1 and removes the v2 prefix from the new classes.
This commit is contained in:
Jeffrey Starke
2025-05-02 16:21:24 -04:00
committed by Michelle Tang
parent 5306a9dd7a
commit 844dec06b1
18 changed files with 16 additions and 905 deletions

View File

@@ -21,7 +21,7 @@ import org.thoughtcrime.securesms.keyboard.sticker.StickerSearchDialogFragment;
import org.thoughtcrime.securesms.scribbles.stickers.FeatureSticker;
import org.thoughtcrime.securesms.scribbles.stickers.ScribbleStickersFragment;
import org.thoughtcrime.securesms.stickers.StickerEventListener;
import org.thoughtcrime.securesms.stickers.StickerManagementActivityV2;
import org.thoughtcrime.securesms.stickers.StickerManagementActivity;
import org.thoughtcrime.securesms.util.ViewUtil;
public final class ImageEditorStickerSelectActivity extends AppCompatActivity implements StickerEventListener, MediaKeyboard.MediaKeyboardListener, StickerKeyboardPageFragment.Callback, ScribbleStickersFragment.Callback {
@@ -66,7 +66,7 @@ public final class ImageEditorStickerSelectActivity extends AppCompatActivity im
@Override
public void onStickerManagementClicked() {
startActivity(StickerManagementActivityV2.createIntent(ImageEditorStickerSelectActivity.this));
startActivity(StickerManagementActivity.createIntent(ImageEditorStickerSelectActivity.this));
}