1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-10-21 18:37:39 +00:00

ThemeHelper: Fix 'the the' typo

This commit is contained in:
Linus Jahn
2020-03-26 01:50:32 +01:00
parent 55c577e76e
commit edff3c35f2

View File

@@ -175,7 +175,7 @@ public class ThemeHelper {
}
/**
* Get a resource id from a resource styled according to the the context's theme.
* Get a resource id from a resource styled according to the context's theme.
*/
public static int resolveResourceIdFromAttr(Context context, @AttrRes int attr) {
TypedArray a = context.getTheme().obtainStyledAttributes(new int[]{attr});
@@ -185,7 +185,7 @@ public class ThemeHelper {
}
/**
* Get a color from an attr styled according to the the context's theme.
* Get a color from an attr styled according to the context's theme.
*/
public static int resolveColorFromAttr(Context context, @AttrRes int attrColor) {
final TypedValue value = new TypedValue();