Skip to content

Commit

Permalink
Fixing mistake I made putting a kotlin interface instead of a java in…
Browse files Browse the repository at this point in the history
…terface
  • Loading branch information
Sean Blahovici authored and Sean Blahovici committed Oct 15, 2020
1 parent 57fbd1b commit ac76b35
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.hannesdorfmann.adapterdelegates4;

import java.util.List;

interface ItemsCommittedCallback<T> {
void onCommitted(List<T> committedItems);
}

This file was deleted.

0 comments on commit ac76b35

Please sign in to comment.