aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/ToplevelSkylarkAspectFunction.java
diff options
context:
space:
mode:
authorGravatar Ulf Adams <ulfjack@google.com>2016-01-19 11:03:22 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-01-19 13:28:10 +0000
commitd55d7afc7532f6e0cb56cde4b05487c784842395 (patch)
treee96f0f488a896c8bd68a90846828aa2ad367d86c /src/main/java/com/google/devtools/build/lib/skyframe/ToplevelSkylarkAspectFunction.java
parent8e2adfbf3c0eb5db6a591cc56a228fee986ccb6a (diff)
General cleanup for the configured target / aspect creation code.
- update some comments - add some comments to make it easier to follow - delete some dead code, in particular the SkyframeDependencyResolver can never be null; remove an non-applicable @Nullable annotation I'm trying to figure out how the error handling code works, in order to add support for interleaved loading+analysis, which requires handling loading errors in this code path. -- MOS_MIGRATED_REVID=112456674
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skyframe/ToplevelSkylarkAspectFunction.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/ToplevelSkylarkAspectFunction.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/ToplevelSkylarkAspectFunction.java b/src/main/java/com/google/devtools/build/lib/skyframe/ToplevelSkylarkAspectFunction.java
index 5cf7d97bf5..cac4c02216 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/ToplevelSkylarkAspectFunction.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/ToplevelSkylarkAspectFunction.java
@@ -89,7 +89,6 @@ public class ToplevelSkylarkAspectFunction implements SkyFunction {
* Exceptions thrown from ToplevelSkylarkAspectFunction.
*/
public class LoadSkylarkAspectFunctionException extends SkyFunctionException {
-
public LoadSkylarkAspectFunctionException(Exception cause, SkyKey childKey) {
super(cause, childKey);
}