aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com
diff options
context:
space:
mode:
authorGravatar dannark <dannark@google.com>2018-06-13 14:34:19 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-06-13 14:35:47 -0700
commitadb3587f09d4ead874a96b23e324a3dae1ed4294 (patch)
treeacc3726c61e1556041ba9533c98e0ca6b7b7eb24 /src/main/java/com
parente3f29ad4e03c6ff504eb474607f8d92d1f7ee89b (diff)
Delete empty comment lines.
RELNOTES: None PiperOrigin-RevId: 200455297
Diffstat (limited to 'src/main/java/com')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java b/src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java
index df74c5e1a1..bbf7511078 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java
@@ -58,9 +58,7 @@ public class ASTFileLookupFunction implements SkyFunction {
Label fileLabel = (Label) skyKey.argument();
PathFragment filePathFragment = fileLabel.toPathFragment();
- //
// Determine whether the package designated by fileLabel exists.
- //
SkyKey pkgSkyKey = PackageLookupValue.key(fileLabel.getPackageIdentifier());
PackageLookupValue pkgLookupValue = null;
try {
@@ -79,9 +77,7 @@ public class ASTFileLookupFunction implements SkyFunction {
return ASTFileLookupValue.forBadPackage(fileLabel, pkgLookupValue.getErrorMsg());
}
- //
// Determine whether the file designated by fileLabel exists.
- //
Root packageRoot = pkgLookupValue.getRoot();
RootedPath rootedPath = RootedPath.toRootedPath(packageRoot, filePathFragment);
SkyKey fileSkyKey = FileValue.key(rootedPath);
@@ -105,9 +101,7 @@ public class ASTFileLookupFunction implements SkyFunction {
return null;
}
- //
// Both the package and the file exist; load the file and parse it as an AST.
- //
BuildFileAST ast = null;
Path path = rootedPath.asPath();
try {