From: Jim Procter Date: Fri, 4 Oct 2013 12:39:31 +0000 (+0100) Subject: JWS-17 regression error - remove unnecessary throws statement X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=bdbec31bf63dc21082c7d45af5892bf7e669da17;p=jabaws.git JWS-17 regression error - remove unnecessary throws statement --- diff --git a/datamodel/compbio/metadata/Parameter.java b/datamodel/compbio/metadata/Parameter.java index b89f150..6ecf465 100644 --- a/datamodel/compbio/metadata/Parameter.java +++ b/datamodel/compbio/metadata/Parameter.java @@ -58,7 +58,7 @@ public class Parameter extends Option { // JAXB noargs const } - public Parameter(String name, String description) throws MalformedURLException { + public Parameter(String name, String description) { super(name, description); }