File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
services/java/com/android/server Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -693,6 +693,12 @@ public void run() {
693693 reportWtf ("making Vibrator Service ready" , e );
694694 }
695695
696+ try {
697+ lockSettings .systemReady ();
698+ } catch (Throwable e ) {
699+ reportWtf ("making Lock Settings Service ready" , e );
700+ }
701+
696702 if (devicePolicy != null ) {
697703 try {
698704 devicePolicy .systemReady ();
@@ -734,11 +740,6 @@ public void run() {
734740 } catch (Throwable e ) {
735741 reportWtf ("making Package Manager Service ready" , e );
736742 }
737- try {
738- lockSettings .systemReady ();
739- } catch (Throwable e ) {
740- reportWtf ("making Lock Settings Service ready" , e );
741- }
742743
743744 // These are needed to propagate to the runnable below.
744745 final Context contextF = context ;
You can’t perform that action at this time.
0 commit comments