Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 57091f7a authored by Ian Rogers's avatar Ian Rogers
Browse files

Fix missing throw.

Bug caught by errorprone.

Bug: 27723540
Change-Id: Ib405c25614e5f9a82d56b4b172ed574ccc5b9184
parent 51737e64
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -53,7 +53,7 @@ public class RecommendationServiceImpl extends RecommendationService
                }
                }
            }
            }
        } catch (IOException | XmlPullParserException e) {
        } catch (IOException | XmlPullParserException e) {
            new RuntimeException("Could not parse vendorconfig", e);
            throw new RuntimeException("Could not parse vendorconfig", e);
        }
        }


        final int numPlugins = mPlugins.size();
        final int numPlugins = mPlugins.size();