Skip to content

Commit

Permalink
Clean up old eclipse workaround that should be resolved as of Eclipse…
Browse files Browse the repository at this point in the history
… 4.7 as per

https://bugs.eclipse.org/bugs/show_bug.cgi?id=517710

RELNOTES=N/A
PiperOrigin-RevId: 694175240
  • Loading branch information
java-team-github-bot authored and Dagger Team committed Nov 7, 2024
1 parent 6acd5b7 commit fcc6c33
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions java/dagger/internal/DoubleCheck.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,7 @@ public static <P extends javax.inject.Provider<T>, T> javax.inject.Provider<T> p
}

/** Returns a {@link Lazy} that caches the value from the given provider. */
// This method is declared this way instead of "<T> Lazy<T> lazy(Provider<T> delegate)"
// to work around an Eclipse type inference bug: https://github.com/google/dagger/issues/949.
public static <P extends Provider<T>, T> Lazy<T> lazy(P provider) {
public static <T> Lazy<T> lazy(Provider<T> provider) {
if (provider instanceof Lazy) {
@SuppressWarnings("unchecked")
final Lazy<T> lazy = (Lazy<T>) provider;
Expand Down

0 comments on commit fcc6c33

Please sign in to comment.