Remove JournalWriter.append(Indexed)
[controller.git] / atomix-storage / src / main / java / io / atomix / storage / journal / JournalWriter.java
index f5ee18b2e6a573927e51c347fc33457056303aef..95284978bd9af283b696366b85d80acb7cde5ffc 100644 (file)
@@ -50,13 +50,6 @@ public interface JournalWriter<E> {
    */
   <T extends E> Indexed<T> append(T entry);
 
-  /**
-   * Appends an indexed entry to the log.
-   *
-   * @param entry The indexed entry to append.
-   */
-  void append(Indexed<E> entry);
-
   /**
    * Commits entries up to the given index.
    *