Skip to content

Commit 103a01f

Browse files
committed
修复ANR
1 parent 072268b commit 103a01f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

library/src/main/java/jaygoo/widget/wlv/RenderView.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,12 @@ public void run() {
103103
}
104104

105105
}
106-
try {
107-
Thread.sleep(SLEEP_TIME);
108-
} catch (InterruptedException e) {
109-
e.printStackTrace();
110-
}
106+
107+
}
108+
try {
109+
Thread.sleep(SLEEP_TIME);
110+
} catch (InterruptedException e) {
111+
e.printStackTrace();
111112
}
112113

113114
}

0 commit comments

Comments
 (0)