blob: eb488dde9bf41432b7d54fe9e7bf05d68ef8174b [file] [log] [blame]
package org.wordpress.android.util;
import android.content.Context;
public class SystemServiceFactoryDefault implements SystemServiceFactoryAbstract {
public Object get(Context context, String name) {
return context.getSystemService(name);
}
}