You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by st...@apache.org on 2011/08/18 10:58:52 UTC

svn commit: r1159095 - /cocoon/cocoon3/trunk/cocoon-stax/src/main/java/org/apache/cocoon/stax/converter/util/ExtendedNamespaceContext.java

Author: stevendolg
Date: Thu Aug 18 08:58:51 2011
New Revision: 1159095

URL: http://svn.apache.org/viewvc?rev=1159095&view=rev
Log:
Removed redundant modifiers

Modified:
    cocoon/cocoon3/trunk/cocoon-stax/src/main/java/org/apache/cocoon/stax/converter/util/ExtendedNamespaceContext.java

Modified: cocoon/cocoon3/trunk/cocoon-stax/src/main/java/org/apache/cocoon/stax/converter/util/ExtendedNamespaceContext.java
URL: http://svn.apache.org/viewvc/cocoon/cocoon3/trunk/cocoon-stax/src/main/java/org/apache/cocoon/stax/converter/util/ExtendedNamespaceContext.java?rev=1159095&r1=1159094&r2=1159095&view=diff
==============================================================================
--- cocoon/cocoon3/trunk/cocoon-stax/src/main/java/org/apache/cocoon/stax/converter/util/ExtendedNamespaceContext.java (original)
+++ cocoon/cocoon3/trunk/cocoon-stax/src/main/java/org/apache/cocoon/stax/converter/util/ExtendedNamespaceContext.java Thu Aug 18 08:58:51 2011
@@ -43,7 +43,7 @@ import javax.xml.namespace.NamespaceCont
  * 
  * @version from stax-utils stable version stax-utils-20070216
  * @original javanet.staxutils.ExtendedNamespaceContext
- * @modified false
+ * @modified true, removed redundant modifiers
  */
 public interface ExtendedNamespaceContext extends NamespaceContext {
 
@@ -52,7 +52,7 @@ public interface ExtendedNamespaceContex
      * 
      * @return The parent context, or <code>null</code> if this is a root context.
      */
-    public NamespaceContext getParent();
+    NamespaceContext getParent();
 
     /**
      * Determines if the specified prefix is declared within this context, irrespective of any
@@ -62,7 +62,7 @@ public interface ExtendedNamespaceContex
      * @return <code>true</code> if the prefix is declared in this context, <code>false</code>
      *         otherwise.
      */
-    public boolean isPrefixDeclared(String prefix);
+    boolean isPrefixDeclared(String prefix);
 
     /**
      * Returns an {@link Iterator} of all namespace prefixes in scope within this context, including
@@ -70,7 +70,7 @@ public interface ExtendedNamespaceContex
      * 
      * @return An {@link Iterator} of prefix {@link String}s.
      */
-    public Iterator<String> getPrefixes();
+    Iterator<String> getPrefixes();
 
     /**
      * Returns an {@link Iterator} of all namespace prefixes declared within this context,
@@ -78,5 +78,5 @@ public interface ExtendedNamespaceContex
      * 
      * @return An {@link Iterator} of prefix {@link String}s.
      */
-    public Iterator<String> getDeclaredPrefixes();
+    Iterator<String> getDeclaredPrefixes();
 }