mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-07 23:03:11 +08:00
Making constructors public
This commit is contained in:
parent
275cf0c71c
commit
2176d2e02c
@ -23,7 +23,7 @@ public class AccelListener implements SensorEventListener{
|
|||||||
|
|
||||||
private long lastUpdate = -1;
|
private long lastUpdate = -1;
|
||||||
|
|
||||||
AccelListener(Context ctx, WebView appView)
|
public AccelListener(Context ctx, WebView appView)
|
||||||
{
|
{
|
||||||
mCtx = ctx;
|
mCtx = ctx;
|
||||||
mAppView = appView;
|
mAppView = appView;
|
||||||
|
@ -16,7 +16,7 @@ public class GeoBroker {
|
|||||||
private Context mCtx;
|
private Context mCtx;
|
||||||
private HashMap<String, GeoListener> geoListeners;
|
private HashMap<String, GeoListener> geoListeners;
|
||||||
|
|
||||||
GeoBroker(WebView view, Context ctx)
|
public GeoBroker(WebView view, Context ctx)
|
||||||
{
|
{
|
||||||
mCtx = ctx;
|
mCtx = ctx;
|
||||||
mAppView = view;
|
mAppView = view;
|
||||||
|
Loading…
Reference in New Issue
Block a user