Making the IntentSynchronizer constructor public, so that an executor service ca…
…n be passed from outside. Change-Id: If96bd4dfa90222db36061d3f493338217d82c2de
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -74,7 +74,7 @@ public class IntentSynchronizer implements IntentSynchronizationService { | ... | @@ -74,7 +74,7 @@ public class IntentSynchronizer implements IntentSynchronizationService { |
74 | * @param intentService the intent service | 74 | * @param intentService the intent service |
75 | * @param executorService executor service for synchronization thread | 75 | * @param executorService executor service for synchronization thread |
76 | */ | 76 | */ |
77 | - IntentSynchronizer(ApplicationId appId, IntentService intentService, | 77 | + public IntentSynchronizer(ApplicationId appId, IntentService intentService, |
78 | ExecutorService executorService) { | 78 | ExecutorService executorService) { |
79 | this.appId = appId; | 79 | this.appId = appId; |
80 | this.intentService = intentService; | 80 | this.intentService = intentService; | ... | ... |
-
Please register or login to post a comment