Author: agilliland
Date: Tue Apr 11 17:22:15 2006
New Revision: 393341

URL: http://svn.apache.org/viewcvs?rev=393341&view=rev
Log:
removing unused methods removeQueueEntry(id) and removeAutoPing(id).


Modified:
    
incubator/roller/branches/roller-newbackend/src/org/roller/business/hibernate/HibernateAutoPingManagerImpl.java
    
incubator/roller/branches/roller-newbackend/src/org/roller/business/hibernate/HibernatePingQueueManagerImpl.java
    
incubator/roller/branches/roller-newbackend/src/org/roller/model/AutoPingManager.java
    
incubator/roller/branches/roller-newbackend/src/org/roller/model/PingQueueManager.java

Modified: 
incubator/roller/branches/roller-newbackend/src/org/roller/business/hibernate/HibernateAutoPingManagerImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/roller/branches/roller-newbackend/src/org/roller/business/hibernate/HibernateAutoPingManagerImpl.java?rev=393341&r1=393340&r2=393341&view=diff
==============================================================================
--- 
incubator/roller/branches/roller-newbackend/src/org/roller/business/hibernate/HibernateAutoPingManagerImpl.java
 (original)
+++ 
incubator/roller/branches/roller-newbackend/src/org/roller/business/hibernate/HibernateAutoPingManagerImpl.java
 Tue Apr 11 17:22:15 2006
@@ -62,12 +62,6 @@
     }
     
     
-    public void removeAutoPing(String id) throws RollerException {
-        //TODO: first remove all related category restrictions (category 
restrictions are not yet implemented)
-        strategy.removeAndCommit(id, AutoPingData.class);
-    }
-    
-    
     public void removeAutoPing(AutoPingData autoPing)  throws RollerException {
         //TODO: first remove all related category restrictions (category 
restrictions are not yet implemented)
         strategy.removeAndCommit(autoPing);

Modified: 
incubator/roller/branches/roller-newbackend/src/org/roller/business/hibernate/HibernatePingQueueManagerImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/roller/branches/roller-newbackend/src/org/roller/business/hibernate/HibernatePingQueueManagerImpl.java?rev=393341&r1=393340&r2=393341&view=diff
==============================================================================
--- 
incubator/roller/branches/roller-newbackend/src/org/roller/business/hibernate/HibernatePingQueueManagerImpl.java
 (original)
+++ 
incubator/roller/branches/roller-newbackend/src/org/roller/business/hibernate/HibernatePingQueueManagerImpl.java
 Tue Apr 11 17:22:15 2006
@@ -55,12 +55,6 @@
     }
     
     
-    public void removeQueueEntry(String id) throws RollerException {
-        log.debug("Removing ping queue entry with id: " + id);
-        strategy.removeAndCommit(id, PingQueueEntryData.class);
-    }
-    
-    
     public void removeQueueEntry(PingQueueEntryData pingQueueEntry) throws 
RollerException {
         log.debug("Removing ping queue entry: " + pingQueueEntry);
         strategy.removeAndCommit(pingQueueEntry);

Modified: 
incubator/roller/branches/roller-newbackend/src/org/roller/model/AutoPingManager.java
URL: 
http://svn.apache.org/viewcvs/incubator/roller/branches/roller-newbackend/src/org/roller/model/AutoPingManager.java?rev=393341&r1=393340&r2=393341&view=diff
==============================================================================
--- 
incubator/roller/branches/roller-newbackend/src/org/roller/model/AutoPingManager.java
 (original)
+++ 
incubator/roller/branches/roller-newbackend/src/org/roller/model/AutoPingManager.java
 Tue Apr 11 17:22:15 2006
@@ -76,14 +76,6 @@
     /**
      * Remove the auto ping configuration with given id.
      *
-     * @param id the id of the auto ping configuration to remove
-     * @throws RollerException
-     */
-    public void removeAutoPing(String id) throws RollerException;
-
-    /**
-     * Remove the auto ping configuration with given id.
-     *
      * @param autoPing the auto ping configuration to remove
      * @throws RollerException
      */

Modified: 
incubator/roller/branches/roller-newbackend/src/org/roller/model/PingQueueManager.java
URL: 
http://svn.apache.org/viewcvs/incubator/roller/branches/roller-newbackend/src/org/roller/model/PingQueueManager.java?rev=393341&r1=393340&r2=393341&view=diff
==============================================================================
--- 
incubator/roller/branches/roller-newbackend/src/org/roller/model/PingQueueManager.java
 (original)
+++ 
incubator/roller/branches/roller-newbackend/src/org/roller/model/PingQueueManager.java
 Tue Apr 11 17:22:15 2006
@@ -55,14 +55,6 @@
     public void storeQueueEntry(PingQueueEntryData pingQueueEntry) throws 
RollerException;
 
     /**
-     * Remove a queue entry by id.
-     *
-     * @param id the unique id of the entry to be removed.
-     * @throws RollerException
-     */
-    public void removeQueueEntry(String id) throws RollerException;
-
-    /**
      * Remove a queue entry.
      *
      * @param pingQueueEntry the entry to be removed.


Reply via email to