Merge "Fix NPE in NsdServiceTest" am: c30decbfe8 am: a9177b3748

am: a5d620ae92

Change-Id: Ieb299771438fe55566b76271815e52d02da799c8
This commit is contained in:
Hugo Benichi
2017-09-28 12:35:03 +00:00
committed by android-build-merger

View File

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