Android ThreadUtils: Make the class public for access outside org.webrtc

Also make the class non-final. We shouldn't use non-final classes, because then we can't mock them.

R=henrika@webrtc.org

Review URL: https://codereview.webrtc.org/1470973002 .

Cr-Commit-Position: refs/heads/master@{#10757}
This commit is contained in:
Magnus Jedvert
2015-11-23 20:13:24 +01:00
parent 057fb89f83
commit 1aa6efe885

View File

@ -34,7 +34,7 @@ import java.util.concurrent.Callable;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
final class ThreadUtils {
public class ThreadUtils {
/**
* Utility class to be used for checking that a method is called on the correct thread.
*/