commit | 5cc598cbf38081d418d91f54f2b2e14d721dd556 | [log] [tgz] |
---|---|---|
author | Googler <twerth@google.com> | Wed Jul 06 03:29:45 2022 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Wed Jul 06 03:31:06 2022 -0700 |
tree | a17966e4868464e704bf23fd501fe0d43ad78104 | |
parent | 67ffc1e6dfef2c705c24415aedc3ee6754b634fe [diff] [blame] |
Add @Nullable annotations where they were missing. PiperOrigin-RevId: 459211611 Change-Id: I9b281b82c8b3356b3ec735752d9da93239d90105
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/RecursiveFilesystemTraversalFunction.java b/src/main/java/com/google/devtools/build/lib/skyframe/RecursiveFilesystemTraversalFunction.java index df82357..eaed121 100644 --- a/src/main/java/com/google/devtools/build/lib/skyframe/RecursiveFilesystemTraversalFunction.java +++ b/src/main/java/com/google/devtools/build/lib/skyframe/RecursiveFilesystemTraversalFunction.java
@@ -513,6 +513,7 @@ * {@link FileInfo} so the caller should use these instead of the old ones (this happens when * a package is found, but under a different root than expected) */ + @Nullable private static PkgLookupResult checkIfPackage( Environment env, TraversalRequest traversal, FileInfo rootInfo, SyscallCache syscallCache) throws IOException, InterruptedException, BuildFileNotFoundException {