Merge "Fix NPE in NsdServiceTest"

This commit is contained in:
Hugo Benichi
2017-09-28 12:13:18 +00:00
committed by Gerrit Code Review

View File

@@ -77,7 +77,10 @@ public class NsdServiceTest {
@After @After
public void tearDown() throws Exception { public void tearDown() throws Exception {
mThread.quit(); if (mThread != null) {
mThread.quit();
mThread = null;
}
} }
@Test @Test