Skip to content

Commit

Permalink
Temporarily remove @InlineMe from Modules.combine(Module).
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 635570248
  • Loading branch information
kluever authored and Guice Team committed May 20, 2024
1 parent 2b37f02 commit d492cd8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/src/com/google/inject/util/Modules.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import com.google.common.collect.Maps;
import com.google.common.collect.Sets;
import com.google.errorprone.annotations.CheckReturnValue;
import com.google.errorprone.annotations.InlineMe;
import com.google.inject.AbstractModule;
import com.google.inject.Binder;
import com.google.inject.Binding;
Expand Down Expand Up @@ -126,7 +125,7 @@ public static Module combine(Module... modules) {
/**
* @deprecated there's no need to "combine" one module; just install it directly.
*/
@InlineMe(replacement = "module")
// TODO(b/341757497): re-enable this inlining: @InlineMe(replacement = "module")
@Deprecated
public static Module combine(Module module) {
return module;
Expand Down

0 comments on commit d492cd8

Please sign in to comment.