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: 635857202
  • Loading branch information
kluever authored and Guice Team committed May 21, 2024
1 parent d492cd8 commit e35efe7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/com/google/inject/util/Modules.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
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 @@ -125,7 +126,7 @@ public static Module combine(Module... modules) {
/**
* @deprecated there's no need to "combine" one module; just install it directly.
*/
// TODO(b/341757497): re-enable this inlining: @InlineMe(replacement = "module")
@InlineMe(replacement = "module")
@Deprecated
public static Module combine(Module module) {
return module;
Expand Down

0 comments on commit e35efe7

Please sign in to comment.