Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 72F6A9521 for ; Mon, 23 Jan 2012 23:06:16 +0000 (UTC) Received: (qmail 44039 invoked by uid 500); 23 Jan 2012 23:06:16 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 43999 invoked by uid 500); 23 Jan 2012 23:06:16 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 43985 invoked by uid 99); 23 Jan 2012 23:06:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Jan 2012 23:06:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.114] (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Jan 2012 23:06:14 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E0998319306; Mon, 23 Jan 2012 23:05:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bowserj@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [6/17] git commit: Removing GapView, since it doesn't actually do anything Message-Id: <20120123230554.E0998319306@tyr.zones.apache.org> Date: Mon, 23 Jan 2012 23:05:54 +0000 (UTC) Removing GapView, since it doesn't actually do anything Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/commit/490a13d3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/tree/490a13d3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/diff/490a13d3 Branch: refs/heads/master Commit: 490a13d3c46587c76000b5a537e7658150e466af Parents: a2cdcd4 Author: Joe Bowser Authored: Mon Jan 23 11:57:15 2012 -0800 Committer: Joe Bowser Committed: Mon Jan 23 11:57:15 2012 -0800 ---------------------------------------------------------------------- framework/src/com/phonegap/GapView.java | 38 -------------------------- 1 files changed, 0 insertions(+), 38 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/blob/490a13d3/framework/src/com/phonegap/GapView.java ---------------------------------------------------------------------- diff --git a/framework/src/com/phonegap/GapView.java b/framework/src/com/phonegap/GapView.java deleted file mode 100644 index 6ac3b20..0000000 --- a/framework/src/com/phonegap/GapView.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.phonegap; - -import android.content.Context; -import android.view.View; -import android.view.ViewGroup; -import android.webkit.WebView; -import android.widget.EditText; - -public class GapView extends WebView { - - public GapView(Context context) { - super(context); - // TODO Auto-generated constructor stub - } - - @Override - protected void attachViewToParent(View child, int index, ViewGroup.LayoutParams params) - { - if(child.getClass() != EditText.class) - super.attachViewToParent(child, index, params); - else - { - super.attachViewToParent(child, index, params); - } - } - - @Override - protected boolean addViewInLayout(View child, int index, ViewGroup.LayoutParams params) - { - return super.addViewInLayout(child, index, params); - } - - @Override - protected boolean addViewInLayout(View child, int index, ViewGroup.LayoutParams params, boolean preventRequestLayout) - { - return super.addViewInLayout(child, index, params); - } -}