Skip to content

Commit

Permalink
修复ANR
Browse files Browse the repository at this point in the history
  • Loading branch information
JinJieGu committed Jul 31, 2017
1 parent 072268b commit 103a01f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions library/src/main/java/jaygoo/widget/wlv/RenderView.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,12 @@ public void run() {
}

}
try {
Thread.sleep(SLEEP_TIME);
} catch (InterruptedException e) {
e.printStackTrace();
}

}
try {
Thread.sleep(SLEEP_TIME);
} catch (InterruptedException e) {
e.printStackTrace();
}

}
Expand Down

0 comments on commit 103a01f

Please sign in to comment.