From 490a13d3c46587c76000b5a537e7658150e466af Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Mon, 23 Jan 2012 11:57:15 -0800 Subject: [PATCH] Removing GapView, since it doesn't actually do anything --- framework/src/com/phonegap/GapView.java | 38 ------------------------- 1 file changed, 38 deletions(-) delete mode 100644 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 6ac3b20c..00000000 --- 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); - } -}