[java-opensaml COMMIT] /trunk/opensaml-core/src/main/java/org/opensaml/core/xml/AbstractXMLObject.java

noreply at shibboleth.net noreply at shibboleth.net
Fri Oct 12 16:36:13 EDT 2012


Author: tzeller
Date: Fri Oct 12 16:36:13 2012
New Revision: 3094

URL: http://svn.shibboleth.net/view/java-opensaml?rev=3094&view=rev
Log:
Fixed javadoc typos.

Modified:
    trunk/opensaml-core/src/main/java/org/opensaml/core/xml/AbstractXMLObject.java

Modified: trunk/opensaml-core/src/main/java/org/opensaml/core/xml/AbstractXMLObject.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-core/src/main/java/org/opensaml/core/xml/AbstractXMLObject.java?rev=3094&r1=3093&r2=3094&view=diff
==============================================================================
--- trunk/opensaml-core/src/main/java/org/opensaml/core/xml/AbstractXMLObject.java (original)
+++ trunk/opensaml-core/src/main/java/org/opensaml/core/xml/AbstractXMLObject.java Fri Oct 12 16:36:13 2012
@@ -241,7 +241,7 @@
     }
 
     /**
-     * A helper function for derived classes. This 'nornmalizes' newString and then if it is different from oldString
+     * A helper function for derived classes. This 'normalizes' newString and then if it is different from oldString
      * invalidates the DOM. It returns the normalized value so subclasses just have to go. this.foo =
      * prepareForAssignment(this.foo, foo);
      * 
@@ -396,8 +396,8 @@
     }
 
     /**
-     * A convience method that is equal to calling {@link #releaseDOM()} then {@link #releaseChildrenDOM(boolean)} with
-     * the release being propogated.
+     * A convenience method that is equal to calling {@link #releaseDOM()} then {@link #releaseChildrenDOM(boolean)} with
+     * the release being propagated.
      */
     public void releaseThisAndChildrenDOM() {
         if (getDOM() != null) {
@@ -407,8 +407,8 @@
     }
 
     /**
-     * A convience method that is equal to calling {@link #releaseDOM()} then {@link #releaseParentDOM(boolean)} with
-     * the release being propogated.
+     * A convenience method that is equal to calling {@link #releaseDOM()} then {@link #releaseParentDOM(boolean)} with
+     * the release being propagated.
      */
     public void releaseThisandParentDOM() {
         if (getDOM() != null) {



More information about the commits mailing list