From d05ccb9e391a23f035898cefcea97896dbefc97b Mon Sep 17 00:00:00 2001 From: codeanticode Date: Thu, 8 Apr 2010 07:26:12 +0000 Subject: [PATCH] GLConstants removed --- .../core/src/processing/core/GLConstants.java | 28 ------------------- .../core/src/processing/core/GLTexture.java | 2 +- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 android/core/src/processing/core/GLConstants.java diff --git a/android/core/src/processing/core/GLConstants.java b/android/core/src/processing/core/GLConstants.java deleted file mode 100644 index a52e492d4..000000000 --- a/android/core/src/processing/core/GLConstants.java +++ /dev/null @@ -1,28 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2010 Ben Fry and Casey Reas - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License version 2.1 as published by the Free Software Foundation. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -public interface GLConstants { - - -} diff --git a/android/core/src/processing/core/GLTexture.java b/android/core/src/processing/core/GLTexture.java index 98f6580fc..e0fa14709 100644 --- a/android/core/src/processing/core/GLTexture.java +++ b/android/core/src/processing/core/GLTexture.java @@ -38,7 +38,7 @@ import java.nio.*; * */ @SuppressWarnings("unused") -public class GLTexture implements PConstants, GLConstants { +public class GLTexture implements PConstants { public int width, height; protected PApplet parent;