Skip to content

Commit bc78983

Browse files
generatedunixname537391475639613facebook-github-bot
authored andcommitted
fbandroid/libraries/fbcore/src/main/java/com/facebook/common/internal/Throwables.java
Differential Revision: D82105942 fbshipit-source-id: d404af6c313518be200e1bd78a9e13126b007763
1 parent 711cb4a commit bc78983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fbcore/src/main/java/com/facebook/common/internal/Throwables.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public static Throwable getRootCause(Throwable throwable) {
187187
*/
188188
public static List<Throwable> getCausalChain(Throwable throwable) {
189189
Preconditions.checkNotNull(throwable);
190-
List<Throwable> causes = new ArrayList<Throwable>(4);
190+
List<Throwable> causes = new ArrayList<>(4);
191191
while (throwable != null) {
192192
causes.add(throwable);
193193
throwable = throwable.getCause();

0 commit comments

Comments
 (0)