SurfaceTextureHelper: Remove use of quitSafely() because it's API lvl 18

There is no reason to not just quit() in release().

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

Cr-Commit-Position: refs/heads/master@{#10394}
This commit is contained in:
magjed
2015-10-23 18:17:51 -07:00
committed by Commit bot
parent 238b15d543
commit 401fb0648a

View File

@ -223,7 +223,7 @@ final class SurfaceTextureHelper {
surfaceTexture.release();
eglBase.release();
if (isOwningThread) {
handler.getLooper().quitSafely();
handler.getLooper().quit();
}
}
}