You are viewing a plain text version of this content. The canonical link for it is here.
Posted to woden-dev@ws.apache.org by jk...@apache.org on 2006/01/04 18:51:39 UTC

svn commit: r365960 - /incubator/woden/java/src/org/apache/woden/internal/BaseWSDLReader.java

Author: jkaputin
Date: Wed Jan  4 09:51:34 2006
New Revision: 365960

URL: http://svn.apache.org/viewcvs?rev=365960&view=rev
Log:
Removed throws clause for a RuntimeException, 
IllegalArgumentException, from the method signatures
of setFeature and getFeature, but left the @throws
statements in the Javadoc comments. 

Modified:
    incubator/woden/java/src/org/apache/woden/internal/BaseWSDLReader.java

Modified: incubator/woden/java/src/org/apache/woden/internal/BaseWSDLReader.java
URL: http://svn.apache.org/viewcvs/incubator/woden/java/src/org/apache/woden/internal/BaseWSDLReader.java?rev=365960&r1=365959&r2=365960&view=diff
==============================================================================
--- incubator/woden/java/src/org/apache/woden/internal/BaseWSDLReader.java (original)
+++ incubator/woden/java/src/org/apache/woden/internal/BaseWSDLReader.java Wed Jan  4 09:51:34 2006
@@ -121,7 +121,6 @@
      * @throws IllegalArgumentException if the feature name is not recognized.
      */
     public void setFeature(String name, boolean value) 
-    throws IllegalArgumentException
     {
         if(name == null) 
         {
@@ -149,7 +148,7 @@
      * @return a boolean representing the on/off state of the named feature
      * @throws IllegalArgumentException if the feature name is not recognized.
      */
-    public boolean getFeature(String name) throws IllegalArgumentException
+    public boolean getFeature(String name)
     {
         if(name == null) 
         {



---------------------------------------------------------------------
To unsubscribe, e-mail: woden-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: woden-dev-help@ws.apache.org