mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-28 20:45:24 +00:00
bea5308ab7
This has been done in preparations for rewrite to kotlin and upcoming design changes. Nothing should be broken but use caution.
16 lines
372 B
Java
16 lines
372 B
Java
package a;
|
|
|
|
import android.content.Context;
|
|
|
|
import com.topjohnwu.magisk.model.update.UpdateCheckService;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.work.WorkerParameters;
|
|
|
|
public class g extends w<UpdateCheckService> {
|
|
/* Stub */
|
|
public g(@NonNull Context context, @NonNull WorkerParameters workerParams) {
|
|
super(context, workerParams);
|
|
}
|
|
}
|