From b8d152f5cd4628685ec5acfd321b43a422b0cce7 Mon Sep 17 00:00:00 2001 From: John Reck Date: Fri, 21 Apr 2017 10:50:59 -0700 Subject: [PATCH] Fix @throws javadoc on SurfaceTexture ctors Change-Id: I63bd76ec4e44251b7e06ad6fc8aa5a3372104656 Fixes: 37323694 Test: Looked at generated docs, verified correct --- graphics/java/android/graphics/SurfaceTexture.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/graphics/java/android/graphics/SurfaceTexture.java b/graphics/java/android/graphics/SurfaceTexture.java index 90bdd81a9d361..24fb673887fe0 100644 --- a/graphics/java/android/graphics/SurfaceTexture.java +++ b/graphics/java/android/graphics/SurfaceTexture.java @@ -107,7 +107,7 @@ public class SurfaceTexture { * * @param texName the OpenGL texture object name (e.g. generated via glGenTextures) * - * @throws Surface.OutOfResourcesException If the SurfaceTexture cannot be created. + * @throws android.view.Surface.OutOfResourcesException If the SurfaceTexture cannot be created. */ public SurfaceTexture(int texName) { this(texName, false); @@ -128,7 +128,7 @@ public class SurfaceTexture { * @param texName the OpenGL texture object name (e.g. generated via glGenTextures) * @param singleBufferMode whether the SurfaceTexture will be in single buffered mode. * - * @throws Surface.OutOfResourcesException If the SurfaceTexture cannot be created. + * @throws android.view.Surface.OutOfResourcesException If the SurfaceTexture cannot be created. */ public SurfaceTexture(int texName, boolean singleBufferMode) { mCreatorLooper = Looper.myLooper(); @@ -155,7 +155,7 @@ public class SurfaceTexture { * * @param singleBufferMode whether the SurfaceTexture will be in single buffered mode. * - * @throws Surface.OutOfResourcesException If the SurfaceTexture cannot be created. + * @throws android.view.Surface.OutOfResourcesException If the SurfaceTexture cannot be created. */ public SurfaceTexture(boolean singleBufferMode) { mCreatorLooper = Looper.myLooper();