Skip to content

Commit

Permalink
Flip --incompatible_disallow_legacy_java_provider.
Browse files Browse the repository at this point in the history
Fixes #7598.

RELNOTES: None.
PiperOrigin-RevId: 266081966
  • Loading branch information
iirina authored and copybara-github committed Aug 29, 2019
1 parent 65ecfea commit c8a32f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public class StarlarkSemanticsOptions extends OptionsBase implements Serializabl

@Option(
name = "incompatible_disallow_legacy_java_provider",
defaultValue = "false",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.STARLARK_SEMANTICS,
effectTags = {OptionEffectTag.BUILD_FILE_SEMANTICS},
metadataTags = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ public static Builder builderWithDefaults() {
.incompatibleDisableDepsetItems(false)
.incompatibleDisallowDictPlus(true)
.incompatibleDisallowEmptyGlob(false)
.incompatibleDisallowLegacyJavaProvider(false)
.incompatibleDisallowLegacyJavaProvider(true)
.incompatibleDisallowOldStyleArgsAdd(true)
.incompatibleDisallowRuleExecutionPlatformConstraintsAllowed(true)
.incompatibleDisallowStructProviderSyntax(false)
Expand Down

0 comments on commit c8a32f2

Please sign in to comment.