blob: 079ad95b720261abca906adab7460538dcd8c7fd [file] [log] [blame]
package com.android.calendar;
import android.app.Activity;
public abstract class AbstractCalendarActivity extends Activity {
protected AsyncQueryService mService;
public synchronized AsyncQueryService getAsyncQueryService() {
if (mService == null) {
mService = new AsyncQueryService(this);
}
return mService;
}
}