aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/query2/output
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/query2/output')
-rw-r--r--src/main/java/com/google/devtools/build/lib/query2/output/ProtoOutputFormatter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/query2/output/ProtoOutputFormatter.java b/src/main/java/com/google/devtools/build/lib/query2/output/ProtoOutputFormatter.java
index 5f87e74e24..a013b9d894 100644
--- a/src/main/java/com/google/devtools/build/lib/query2/output/ProtoOutputFormatter.java
+++ b/src/main/java/com/google/devtools/build/lib/query2/output/ProtoOutputFormatter.java
@@ -138,7 +138,7 @@ public class ProtoOutputFormatter extends OutputFormatter implements UnorderedFo
}
rulePb.addAttribute(PackageSerializer.getAttributeProto(attr,
PackageSerializer.getAttributeValues(rule, attr),
- rule.isAttributeValueExplicitlySpecified(attr), /*includeGlobs=*/ false));
+ rule.isAttributeValueExplicitlySpecified(attr)));
}
Environment env = rule.getRuleClassObject().getRuleDefinitionEnvironment();
@@ -159,7 +159,7 @@ public class ProtoOutputFormatter extends OutputFormatter implements UnorderedFo
for (Entry<Attribute, Collection<Label>> entry : aspectsDependencies.asMap().entrySet()) {
rulePb.addAttribute(PackageSerializer.getAttributeProto(entry.getKey(),
Lists.<Object>newArrayList(entry.getValue()),
- /*explicitlySpecified=*/ false, /*includeGlobs=*/ false));
+ /*explicitlySpecified=*/ false));
}
// Add all deps from aspects as rule inputs of current target.
for (Label label : aspectsDependencies.values()) {