CB-993: Android plugin problems upgrading to 1.9.0

The DroidGap.getContext() method causes an infinite loop and eventually a stack overflow error.
This commit is contained in:
macdonst 2012-07-02 16:37:09 -04:00
parent e5e7c3fad3
commit 5eb554e008

View File

@ -779,7 +779,7 @@ public class DroidGap extends Activity implements CordovaInterface {
super.finish();
}
/**
* Launch an activity for which you would like a result when it finished. When this activity exits,
* your onActivityResult() method will be called.
@ -941,7 +941,7 @@ public class DroidGap extends Activity implements CordovaInterface {
*/
public Context getContext() {
LOG.d(TAG, "This will be deprecated December 2012");
return this.getContext();
return this;
}
/**