You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2006/04/12 20:07:06 UTC

svn commit: r393557 - /incubator/roller/branches/roller-newbackend/src/org/roller/pojos/Assoc.java

Author: agilliland
Date: Wed Apr 12 11:07:04 2006
New Revision: 393557

URL: http://svn.apache.org/viewcvs?rev=393557&view=rev
Log:
removing save() and remove() methods from Assoc interface.


Modified:
    incubator/roller/branches/roller-newbackend/src/org/roller/pojos/Assoc.java

Modified: incubator/roller/branches/roller-newbackend/src/org/roller/pojos/Assoc.java
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller-newbackend/src/org/roller/pojos/Assoc.java?rev=393557&r1=393556&r2=393557&view=diff
==============================================================================
--- incubator/roller/branches/roller-newbackend/src/org/roller/pojos/Assoc.java (original)
+++ incubator/roller/branches/roller-newbackend/src/org/roller/pojos/Assoc.java Wed Apr 12 11:07:04 2006
@@ -31,9 +31,4 @@
     /** Type of relationship, PARENT or GRANDPARENT. */
     public String getRelation();
     
-    /** Save association. */
-    public abstract void save() throws RollerException;
-    
-    /** Remove association. */
-    public abstract void remove() throws RollerException;
 }