// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.olio.state; import android.content.Context; import com.olio.olios.model.record.AsyncSerializedRecordLoader; import com.olio.util.ALog; // Referenced classes of package com.olio.state: // Unit, CurrentDevice public class UnitLoader extends AsyncSerializedRecordLoader { String unitId; public UnitLoader(Context context, String s) { super(context); unitId = s; } public String getType() { return Unit.TYPE_NAME; } public Unit loadInBackground() { ALog.d("LooksActivity: asset: Loading unit in background", new Object[0]); return Unit.get(getContext().getContentResolver(), CurrentDevice.unitId()); } public volatile Object loadInBackground() { return loadInBackground(); } }