Making constructors public

This commit is contained in:
Joe Bowser 2009-11-23 10:57:05 -08:00
parent 275cf0c71c
commit 2176d2e02c
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ public class AccelListener implements SensorEventListener{
private long lastUpdate = -1;
AccelListener(Context ctx, WebView appView)
public AccelListener(Context ctx, WebView appView)
{
mCtx = ctx;
mAppView = appView;

View File

@ -16,7 +16,7 @@ public class GeoBroker {
private Context mCtx;
private HashMap<String, GeoListener> geoListeners;
GeoBroker(WebView view, Context ctx)
public GeoBroker(WebView view, Context ctx)
{
mCtx = ctx;
mAppView = view;