ThemeHelper: Fix 'the the' typo

This commit is contained in:
Linus Jahn 2020-03-26 01:50:32 +01:00
parent 55c577e76e
commit edff3c35f2
No known key found for this signature in database
GPG Key ID: 4663231A91A1E27B
1 changed files with 2 additions and 2 deletions

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();