Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f96836ed authored by Kenny Root's avatar Kenny Root
Browse files

Move RecoverySystemService into its own package

This helps reviewing the refactor of the RecoverySystemService in which it
is made a bit more testable.

Test: make && emulator
Change-Id: Ifc5a658fe68ed10ab400f43d1d3967c0acccbd11
parent 1dcfd692
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package com.android.server;
package com.android.server.recoverysystem;

import android.content.Context;
import android.net.LocalSocket;
@@ -27,6 +27,8 @@ import android.os.RemoteException;
import android.os.SystemProperties;
import android.util.Slog;

import com.android.server.SystemService;

import libcore.io.IoUtils;

import java.io.DataInputStream;
+1 −0
Original line number Diff line number Diff line
@@ -135,6 +135,7 @@ import com.android.server.policy.role.LegacyRoleResolutionPolicy;
import com.android.server.power.PowerManagerService;
import com.android.server.power.ShutdownThread;
import com.android.server.power.ThermalManagerService;
import com.android.server.recoverysystem.RecoverySystemService;
import com.android.server.restrictions.RestrictionsManagerService;
import com.android.server.role.RoleManagerService;
import com.android.server.rollback.RollbackManagerService;