Skip to content

Commit

Permalink
Delete empty comment lines.
Browse files Browse the repository at this point in the history
RELNOTES: None
PiperOrigin-RevId: 200455297
  • Loading branch information
dkelmer authored and Copybara-Service committed Jun 13, 2018
1 parent e3f29ad commit adb3587
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ public SkyValue compute(SkyKey skyKey, Environment env) throws SkyFunctionExcept
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 {
Expand All @@ -79,9 +77,7 @@ public SkyValue compute(SkyKey skyKey, Environment env) throws SkyFunctionExcept
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);
Expand All @@ -105,9 +101,7 @@ public SkyValue compute(SkyKey skyKey, Environment env) throws SkyFunctionExcept
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 {
Expand Down

0 comments on commit adb3587

Please sign in to comment.