Fix linter warning

This commit is contained in:
Sylvia van Os
2019-12-01 20:53:37 +01:00
parent 48a1084c40
commit 22e8d7f699
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ public class ImportURITest {
try {
importURIHelper.parse(Uri.parse("https://example.com/test"));
assertTrue(false); // Shouldn't get here
} catch(InvalidObjectException _) {
} catch(InvalidObjectException ex) {
// Desired behaviour
}
}