@@ -826,8 +826,6 @@ void unlockSDKInitWaitLock() {
826826 if (requestQueue_ == null ) return ;
827827 requestQueue_ .postInitClear ();
828828 requestQueue_ .unlockProcessWait (ServerRequest .PROCESS_WAIT_LOCK .SDK_INIT_WAIT_LOCK );
829- // processNextQueueItem call removed - critical SDK initialization unlock handled automatically
830- // Modern queue processes immediately when SDK_INIT_WAIT_LOCK is released via unlockProcessWait
831829 }
832830
833831 private boolean isIntentParamsAlreadyConsumed (Activity activity ) {
@@ -1296,9 +1294,6 @@ void registerAppInit(@NonNull ServerRequestInitSession request, boolean forceBra
12961294 BranchLogger .v ("Finished ordering init calls" );
12971295 requestQueue_ .printQueue ();
12981296 initTasks (request );
1299-
1300- // processNextQueueItem call removed - app initialization processing handled automatically
1301- // Modern queue processes init session request immediately after initTasks completes
13021297 }
13031298
13041299 private void initTasks (ServerRequest request ) {
@@ -1319,7 +1314,6 @@ private void initTasks(ServerRequest request) {
13191314 public void onInstallReferrersFinished () {
13201315 request .removeProcessWaitLock (ServerRequest .PROCESS_WAIT_LOCK .INSTALL_REFERRER_FETCH_WAIT_LOCK );
13211316 BranchLogger .v ("INSTALL_REFERRER_FETCH_WAIT_LOCK removed" );
1322- // processNextQueueItem call removed - modern queue processes automatically via unlockProcessWait
13231317 }
13241318 });
13251319 }
@@ -1331,7 +1325,6 @@ public void onInstallReferrersFinished() {
13311325 @ Override
13321326 public void onAdsParamsFetchFinished () {
13331327 requestQueue_ .unlockProcessWait (ServerRequest .PROCESS_WAIT_LOCK .GAID_FETCH_WAIT_LOCK );
1334- // processNextQueueItem call removed - modern queue processes automatically via unlockProcessWait
13351328 }
13361329 });
13371330 }
@@ -1359,7 +1352,6 @@ void onIntentReady(@NonNull Activity activity) {
13591352 Uri intentData = activity .getIntent ().getData ();
13601353 readAndStripParam (intentData , activity );
13611354 }
1362- // processNextQueueItem call removed - modern queue processes automatically without manual trigger
13631355 }
13641356
13651357 /**
0 commit comments