From 3c0adb26bac6d756fb97e4bcc6d4e5b2cefa5eeb Mon Sep 17 00:00:00 2001 From: Janak Ramakrishnan Date: Mon, 15 Aug 2016 21:54:55 +0000 Subject: Allow Skyframe graph lookups and value retrievals to throw InterruptedException. The only place we now don't handle InterruptedException is in the action graph created after analysis, since I'm not sure that will be around for that much longer. -- MOS_MIGRATED_REVID=130327770 --- .../java/com/google/devtools/build/lib/rules/android/NativeLibs.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main/java/com/google/devtools/build/lib/rules/android/NativeLibs.java') diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/NativeLibs.java b/src/main/java/com/google/devtools/build/lib/rules/android/NativeLibs.java index 4e582aa296..cbffcd8f0e 100644 --- a/src/main/java/com/google/devtools/build/lib/rules/android/NativeLibs.java +++ b/src/main/java/com/google/devtools/build/lib/rules/android/NativeLibs.java @@ -65,7 +65,8 @@ public final class NativeLibs { String nativeDepsFileName, Multimap depsByArchitecture, Map toolchainMap, - Map configurationMap) { + Map configurationMap) + throws InterruptedException { Map> result = new LinkedHashMap<>(); for (Map.Entry> entry : depsByArchitecture.asMap().entrySet()) { -- cgit v1.2.3