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 @@ -677,6 +677,12 @@ public void run() {
677677 reportWtf ("making Vibrator Service ready" , e );
678678 }
679679
680+ try {
681+ lockSettings .systemReady ();
682+ } catch (Throwable e ) {
683+ reportWtf ("making Lock Settings Service ready" , e );
684+ }
685+
680686 if (devicePolicy != null ) {
681687 try {
682688 devicePolicy .systemReady ();
@@ -718,11 +724,6 @@ public void run() {
718724 } catch (Throwable e ) {
719725 reportWtf ("making Package Manager Service ready" , e );
720726 }
721- try {
722- lockSettings .systemReady ();
723- } catch (Throwable e ) {
724- reportWtf ("making Lock Settings Service ready" , e );
725- }
726727
727728 // These are needed to propagate to the runnable below.
728729 final Context contextF = context ;
You can’t perform that action at this time.
0 commit comments