From 287a1310acc608ee2983cc2734616a28e4d113d6 Mon Sep 17 00:00:00 2001 From: Mike Reed Date: Mon, 1 May 2017 10:03:58 -0400 Subject: remove unused private field Test: CtsGraphicsTests Change-Id: I611f5dc127636f67dc219ef15adc0a591a72a95e --- opengl/java/com/google/android/gles_jni/EGLSurfaceImpl.java | 3 --- 1 file changed, 3 deletions(-) (limited to 'opengl') diff --git a/opengl/java/com/google/android/gles_jni/EGLSurfaceImpl.java b/opengl/java/com/google/android/gles_jni/EGLSurfaceImpl.java index 7a3ed24f8811..21c350be7c39 100644 --- a/opengl/java/com/google/android/gles_jni/EGLSurfaceImpl.java +++ b/opengl/java/com/google/android/gles_jni/EGLSurfaceImpl.java @@ -20,14 +20,11 @@ import javax.microedition.khronos.egl.*; public class EGLSurfaceImpl extends EGLSurface { long mEGLSurface; - private long mNativePixelRef; public EGLSurfaceImpl() { mEGLSurface = 0; - mNativePixelRef = 0; } public EGLSurfaceImpl(long surface) { mEGLSurface = surface; - mNativePixelRef = 0; } @Override -- cgit v1.2.3