Author: dkulp
Date: Mon Feb 14 18:29:45 2011
New Revision: 1070601

URL: http://svn.apache.org/viewvc?rev=1070601&view=rev
Log:
Remove the @suppresswarnings that are causing issues in eclipse

Modified:
    
webservices/commons/trunk/modules/neethi/src/main/java/org/apache/neethi/PolicyEngine.java

Modified: 
webservices/commons/trunk/modules/neethi/src/main/java/org/apache/neethi/PolicyEngine.java
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/neethi/src/main/java/org/apache/neethi/PolicyEngine.java?rev=1070601&r1=1070600&r2=1070601&view=diff
==============================================================================
--- 
webservices/commons/trunk/modules/neethi/src/main/java/org/apache/neethi/PolicyEngine.java
 (original)
+++ 
webservices/commons/trunk/modules/neethi/src/main/java/org/apache/neethi/PolicyEngine.java
 Mon Feb 14 18:29:45 2011
@@ -60,7 +60,6 @@ public class PolicyEngine {
      *            the AssertionBuilder that can build assertions that of 
'qname'
      *            type
      */
-    @SuppressWarnings({"UnusedDeclaration"})
     public void registerBuilder(QName qname, AssertionBuilder builder) {
         factory.registerBuilder(qname, builder);
     }
@@ -72,7 +71,6 @@ public class PolicyEngine {
      * PolicyRegistry.   
      * @return the default PolicyRegistry
      */
-    @SuppressWarnings({"UnusedDeclaration"})
     public PolicyRegistry getPolicyRegistry() {
         return defaultPolicyRegistry;
     }
@@ -127,7 +125,6 @@ public class PolicyEngine {
      *            the InputStream of the PolicyReference
      * @return a PolicyReference object of the PolicyReference
      */
-    @SuppressWarnings({"UnusedDeclaration"})
     public PolicyReference getPolicyReference(InputStream inputStream) {
         try {
             XMLStreamReader reader = 
XMLInputFactory.newInstance().createXMLStreamReader(inputStream);


Reply via email to