From adb3587f09d4ead874a96b23e324a3dae1ed4294 Mon Sep 17 00:00:00 2001 From: dannark Date: Wed, 13 Jun 2018 14:34:19 -0700 Subject: [PATCH] Delete empty comment lines. RELNOTES: None PiperOrigin-RevId: 200455297 --- .../devtools/build/lib/skyframe/ASTFileLookupFunction.java | 6 ------ 1 file changed, 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 df74c5e1a16f71..bbf75110783a9b 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 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 { @@ -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); @@ -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 {