Skip to content

Commit

Permalink
Remove unused gradle incremental processing option from CompilerOptions.
Browse files Browse the repository at this point in the history
RELNOTES=n/a

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=276701751
  • Loading branch information
gkdn authored and cgdecker committed Oct 28, 2019
1 parent 39fa2cc commit 3de8dd3
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
Expand Up @@ -62,8 +62,6 @@ public final boolean doCheckForNulls() {

public abstract boolean headerCompilation();

public abstract boolean useGradleIncrementalProcessing();

public abstract ValidationType fullBindingGraphValidationType();

/**
Expand Down
Expand Up @@ -84,11 +84,6 @@ public boolean headerCompilation() {
return false;
}

@Override
public boolean useGradleIncrementalProcessing() {
return false;
}

@Override
public ValidationType fullBindingGraphValidationType() {
return NONE;
Expand Down
Expand Up @@ -137,11 +137,6 @@ public boolean warnIfInjectionFactoryNotGeneratedUpstream() {
return isEnabled(WARN_IF_INJECTION_FACTORY_NOT_GENERATED_UPSTREAM);
}

@Override
public boolean useGradleIncrementalProcessing() {
return isEnabled(USE_GRADLE_INCREMENTAL_PROCESSING);
}

@Override
public ValidationType fullBindingGraphValidationType() {
return parseOption(FULL_BINDING_GRAPH_VALIDATION);
Expand Down

0 comments on commit 3de8dd3

Please sign in to comment.