diff options
author | Ian Rogers <irogers@google.com> | 2016-05-04 09:32:29 -0700 |
---|---|---|
committer | Ian Rogers <irogers@google.com> | 2016-05-04 09:32:29 -0700 |
commit | 57091f7a8bb31520a8edc0280b5f556c23d169a0 (patch) | |
tree | 497e37d0c860eb625213d40c6953810dcc23c60a /packages/PrintRecommendationService/src | |
parent | 51737e646cc5795e7cf004df9ad432a61a8a6a2b (diff) |
Fix missing throw.
Bug caught by errorprone.
Bug: 27723540
Change-Id: Ib405c25614e5f9a82d56b4b172ed574ccc5b9184
Diffstat (limited to 'packages/PrintRecommendationService/src')
-rw-r--r-- | packages/PrintRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/PrintRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java index 9f6dad8f2e2a..493cb31f1f5e 100644 --- a/packages/PrintRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java +++ b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java @@ -53,7 +53,7 @@ public class RecommendationServiceImpl extends RecommendationService } } } catch (IOException | XmlPullParserException e) { - new RuntimeException("Could not parse vendorconfig", e); + throw new RuntimeException("Could not parse vendorconfig", e); } final int numPlugins = mPlugins.size(); |