aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/analysis/Runfiles.java
diff options
context:
space:
mode:
authorGravatar John Cater <jcater@google.com>2017-01-03 20:06:59 +0000
committerGravatar John Cater <jcater@google.com>2017-01-03 20:50:02 +0000
commitd79284294bbe89dbcd4e78e2711e6f87d68092d9 (patch)
tree0019c4cbc91e21ef148bd3da958cbfbe08243876 /src/main/java/com/google/devtools/build/lib/analysis/Runfiles.java
parent6e071515a678549c433dbf56fcdd8891d3dc5a8b (diff)
Manually add periods to documentation strings where needed.
-- Change-Id: I9ec3209a69ba5a51943b334f278ba93d67d4f9f4 Reviewed-on: https://cr.bazel.build/8090 PiperOrigin-RevId: 143470915 MOS_MIGRATED_REVID=143470915
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/analysis/Runfiles.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/analysis/Runfiles.java21
1 files changed, 9 insertions, 12 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/Runfiles.java b/src/main/java/com/google/devtools/build/lib/analysis/Runfiles.java
index 25fc4ca865..8f171a3a76 100644
--- a/src/main/java/com/google/devtools/build/lib/analysis/Runfiles.java
+++ b/src/main/java/com/google/devtools/build/lib/analysis/Runfiles.java
@@ -330,12 +330,12 @@ public final class Runfiles {
}
/**
- * Returns the collection of runfiles as artifacts, including both unconditional artifacts
- * and pruning manifest candidates.
+ * Returns the collection of runfiles as artifacts, including both unconditional artifacts and
+ * pruning manifest candidates.
*/
@SkylarkCallable(
name = "files",
- doc = "Returns the set of runfiles as files",
+ doc = "Returns the set of runfiles as files.",
structField = true
)
public NestedSet<Artifact> getArtifacts() {
@@ -355,10 +355,8 @@ public final class Runfiles {
return Iterables.filter(getArtifacts(), Artifact.MIDDLEMAN_FILTER);
}
- /**
- * Returns the symlinks.
- */
- @SkylarkCallable(name = "symlinks", doc = "Returns the set of symlinks", structField = true)
+ /** Returns the symlinks. */
+ @SkylarkCallable(name = "symlinks", doc = "Returns the set of symlinks.", structField = true)
public NestedSet<SymlinkEntry> getSymlinks() {
return symlinks;
}
@@ -1118,13 +1116,12 @@ public final class Runfiles {
}
}
- /**
- * Provides a Skylark-visible way to merge two Runfiles objects.
- */
+ /** Provides a Skylark-visible way to merge two Runfiles objects. */
@SkylarkCallable(
name = "merge",
- doc = "Returns a new runfiles object that includes all the contents of this one and the "
- + "argument."
+ doc =
+ "Returns a new runfiles object that includes all the contents of this one and the "
+ + "argument."
)
public Runfiles merge(Runfiles other) {
Runfiles.Builder builder = new Runfiles.Builder(suffix, false);