(final Object a, final Object b)
| 1129 | } |
| 1130 | |
| 1131 | public static boolean equals(final Object a, final Object b) { |
| 1132 | if (a == null && b == null) { |
| 1133 | return true; |
| 1134 | } else if (a == null || b == null) { |
| 1135 | return false; |
| 1136 | } |
| 1137 | return a.equals(b); |
| 1138 | } |
| 1139 | |
| 1140 | @SuppressLint("ClickableViewAccessibility") |
| 1141 | public static void makeTextViewLinksClickable(final TextView textView, final Spanned text) { |
no outgoing calls