Skip to content

Commit

Permalink
drop unused exception
Browse files Browse the repository at this point in the history
  • Loading branch information
qqmyers committed Aug 23, 2023
1 parent d802e4b commit 46f62bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/harvard/iq/dataverse/DatasetPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -5703,7 +5703,7 @@ public boolean isArchivable() {
Method m = clazz.getMethod("isArchivable", Dataset.class, SettingsWrapper.class);
Object[] params = { dataset, settingsWrapper };
archivable = ((Boolean) m.invoke(null, params) == true);
} catch (ClassNotFoundException | IllegalAccessException | IllegalArgumentException
} catch (IllegalAccessException | IllegalArgumentException
| InvocationTargetException | NoSuchMethodException | SecurityException e) {
logger.warning("Failed to call isArchivable on configured archiver class: " + className);
e.printStackTrace();
Expand Down

0 comments on commit 46f62bb

Please sign in to comment.