1
0
mirror of https://github.com/google/nomulus synced 2026-01-11 00:10:36 +00:00

Migrate @Provides(type=SET_VALUES) to @ElementsIntoSet

See Rosie [] for context.

We've already switched over to using Dagger 2.4 in respositories.bzl,
so this change is fine for our open source drop.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=121863923
This commit is contained in:
mcilwain
2016-05-09 12:25:29 -07:00
committed by Justine Tunney
parent 047bbf186e
commit b60ceda055
4 changed files with 12 additions and 12 deletions

View File

@@ -14,8 +14,6 @@
package google.registry.export;
import static dagger.Provides.Type.SET_VALUES;
import com.google.api.client.http.HttpRequestInitializer;
import com.google.api.client.http.HttpTransport;
import com.google.api.client.json.JsonFactory;
@@ -24,6 +22,7 @@ import com.google.api.services.drive.DriveScopes;
import dagger.Module;
import dagger.Provides;
import dagger.multibindings.ElementsIntoSet;
import google.registry.config.ConfigModule.Config;
import google.registry.request.OAuthScopes;
@@ -43,7 +42,8 @@ import java.util.Set;
public final class DriveModule {
/** Provides OAuth2 scopes for the Drive service needed by Domain Registry. */
@Provides(type = SET_VALUES)
@Provides
@ElementsIntoSet
@OAuthScopes
static Set<String> provideDriveOAuthScopes() {
return DriveScopes.all();