raphael     2002/11/03 07:11:53

  Modified:    src/java/org/apache/jetspeed/om/profile BaseProfile.java
  Log:
  Fix some style issues
  
  Revision  Changes    Path
  1.16      +7 -7      
jakarta-jetspeed/src/java/org/apache/jetspeed/om/profile/BaseProfile.java
  
  Index: BaseProfile.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/om/profile/BaseProfile.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- BaseProfile.java  27 Sep 2002 16:54:07 -0000      1.15
  +++ BaseProfile.java  3 Nov 2002 15:11:53 -0000       1.16
  @@ -92,17 +92,17 @@
           this.setUser(locator.getUser());
       }
   
  -    /** 
  +    /**
        * @see Object#clone
        * @return an instance copy of this object
  -     */    
  +     */
       public Object clone() throws java.lang.CloneNotSupportedException
       {
           Object cloned = super.clone();
  -        
  +
           // clone the document
           ((BaseProfile)cloned).document = ((this.document == null) ? null : 
(PSMLDocument) this.document.clone());
  -        
  +
           return cloned;
       }
   
  @@ -130,7 +130,7 @@
                   this.document = PsmlManager.getDocument(this);
               }
           }
  -        
  +
           return this.document;
       }
   
  @@ -153,7 +153,7 @@
       {
           if (document != null)
           {
  -            PsmlManager.store(this);  
  +            PsmlManager.store(this);
           }
       }
   
  
  
  

--
To unsubscribe, e-mail:   <mailto:jetspeed-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:jetspeed-dev-help@;jakarta.apache.org>

Reply via email to