All Downloads are FREE. Search and download functionalities are using the official Maven repository.

errorprone.bugpattern.EmptySetMultibindingContributions.md Maven / Gradle / Ivy

The newest version!
When using [Dagger Multibinding][dmb], you can use methods like the below to
make sure that there's a (potentially empty) Set binding for your type:

```java
@Provides @ElementsIntoSet Set provideEmptySetOfMyType() {
  return new HashSet<>();
}
```

However, there's a slightly easier way to express this:

```java
@Multibinds abstract Set provideEmptySetOfMyType();
```

[dmb]: https://dagger.dev/multibindings.html




© 2015 - 2025 Weber Informatics LLC | Privacy Policy