feat: remove getAppContext() (#182)

This reverts commit 0be0ffd42a.
This commit is contained in:
oSumAtrIX 2022-10-22 16:40:16 +02:00 committed by GitHub
parent 0be0ffd42a
commit f4650b1139
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 22 deletions

View File

@ -18,7 +18,6 @@ import android.preference.PreferenceFragment;
import android.preference.PreferenceScreen;
import android.preference.SwitchPreference;
import com.google.android.apps.youtube.app.YouTubeTikTokRoot_Application;
import com.google.android.apps.youtube.app.application.Shell_HomeActivity;
import java.util.List;
@ -174,7 +173,7 @@ public class ReVancedSettingsFragment extends PreferenceFragment {
*/
private String getPackageName() {
Context context = YouTubeTikTokRoot_Application.getAppContext();
Context context = ReVancedUtils.getContext();
if (context == null) {
LogHelper.printException(ReVancedSettingsFragment.class, "Context is null, returning com.google.android.youtube!");
return "com.google.android.youtube";

View File

@ -5,8 +5,6 @@ import android.content.res.Resources;
import android.os.Handler;
import android.os.Looper;
import com.google.android.apps.youtube.app.YouTubeTikTokRoot_Application;
import app.revanced.integrations.sponsorblock.player.PlayerType;
public class ReVancedUtils {
@ -17,13 +15,6 @@ public class ReVancedUtils {
//Used by Integrations patch
public static Context context;
//Used by Integrations patch
public static Context getAppContext() {
if (context != null) {
return context;
}
LogHelper.printException(ReVancedUtils.class, "Context is null!");
return null;
}
public static void setNewVideo(boolean started) {
LogHelper.debug(ReVancedUtils.class, "New video started: " + started);
@ -61,7 +52,6 @@ public class ReVancedUtils {
}
public static Context getContext() {
Context context = YouTubeTikTokRoot_Application.getAppContext();
if (context != null) {
return context;
} else {

View File

@ -1,10 +0,0 @@
package com.google.android.apps.youtube.app;
import android.app.Application;
import android.content.Context;
public class YouTubeTikTokRoot_Application extends Application {
public static Context getAppContext() {
return null;
}
}