Skip to content

Commit

Permalink
Combine catches
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahgraham committed Oct 8, 2024
1 parent 29fe967 commit 59c34a0
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,8 @@ public void removeToolChainFile(ICMakeToolChainFile file) {
tcNode.removeNode();
prefs.flush();
}
} catch (CoreException ce) {
Activator.log(ce);
} catch (BackingStoreException be) {
Activator.log(be);
} catch (CoreException | BackingStoreException e) {
Activator.log(e);
}
}

Expand Down

0 comments on commit 59c34a0

Please sign in to comment.