[jboss-cvs] jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/model ...

Christian Bauer christian at hibernate.org
Thu Apr 26 14:54:26 EDT 2007


  User: cbauer  
  Date: 07/04/26 14:54:26

  Modified:    examples/wiki/src/main/org/jboss/seam/wiki/core/model 
                        FeedEntry.java
  Log:
  Minor blogging improvements
  
  Revision  Changes    Path
  1.7       +1 -1      jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/model/FeedEntry.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: FeedEntry.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/model/FeedEntry.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- FeedEntry.java	22 Apr 2007 10:15:33 -0000	1.6
  +++ FeedEntry.java	26 Apr 2007 18:54:26 -0000	1.7
  @@ -131,7 +131,7 @@
   
       // Sort by date
       public int compareTo(Object o) {
  -        return getUpdatedDate().compareTo( ((FeedEntry)o).getUpdatedDate() );
  +        return ((FeedEntry)o).getUpdatedDate().compareTo(getUpdatedDate());
       }
   
       public String toString() {
  
  
  



More information about the jboss-cvs-commits mailing list