Generate authInfo for imported domains

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=146956307
This commit is contained in:
Wolfgang Meyers 2017-02-08 14:19:31 -08:00 committed by Ben McIlwain
parent b9222759dc
commit 6cdb3d81d3
4 changed files with 37 additions and 3 deletions

View file

@ -26,7 +26,7 @@ public class RandomStringGenerator extends StringGenerator {
private final Random random;
@Inject
RandomStringGenerator(@Named("alphabet") String alphabet, Random random) {
public RandomStringGenerator(@Named("alphabet") String alphabet, Random random) {
super(alphabet);
this.random = random;
}