diff options
author | Jonathan Nieder <jrn@google.com> | 2013-05-29 10:45:41 -0700 |
---|---|---|
committer | Jonathan Nieder <jrn@google.com> | 2013-05-29 12:35:12 -0700 |
commit | dbf8d95daacb7a4ad5fb0ace59981b6a12c2b25c (patch) | |
tree | c9df9cd6b67b367b0191b55ab924dc9dc945b386 /org.eclipse.jgit.archive/src | |
parent | 679382fb201c39d3db5e37ecd42b7da37d54b947 (diff) | |
download | jgit-dbf8d95daacb7a4ad5fb0ace59981b6a12c2b25c.tar.gz jgit-dbf8d95daacb7a4ad5fb0ace59981b6a12c2b25c.zip |
Drop unnecessary "throws" clauses in archive code
Noticed by eclipse.
Change-Id: I730b290556066038efeaf2436de95415b175f351
Diffstat (limited to 'org.eclipse.jgit.archive/src')
-rw-r--r-- | org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java b/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java index 02adb559e9..f2f6140256 100644 --- a/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java +++ b/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java @@ -56,11 +56,11 @@ import org.osgi.framework.BundleContext; * leaks). */ public class FormatActivator implements BundleActivator { - public void start(BundleContext context) throws Exception { + public void start(BundleContext context) { ArchiveFormats.registerAll(); } - public void stop(BundleContext context) throws Exception { + public void stop(BundleContext context) { ArchiveFormats.unregisterAll(); } } |