diff --git a/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadMockEntitlementDao.java b/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadMockEntitlementDao.java
index f7d8186..68cae5a 100644
--- a/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadMockEntitlementDao.java
+++ b/entitlement/src/test/java/com/ning/billing/entitlement/api/billing/BrainDeadMockEntitlementDao.java
@@ -99,18 +99,6 @@ class BrainDeadMockEntitlementDao implements EntitlementDao {
}
@Override
- public List<EntitlementEvent> getEventsReady(UUID ownerId,
- int sequenceId) {
- throw new UnsupportedOperationException();
- }
-
- @Override
- public void clearEventsReady(UUID ownerId,
- Collection<EntitlementEvent> cleared) {
- throw new UnsupportedOperationException();
- }
-
- @Override
public void createSubscription(SubscriptionData subscription,
List<EntitlementEvent> initialEvents) {
throw new UnsupportedOperationException();
@@ -144,5 +132,10 @@ class BrainDeadMockEntitlementDao implements EntitlementDao {
public void undoMigration(UUID accountId) {
throw new UnsupportedOperationException();
}
+
+ @Override
+ public EntitlementEvent getEventById(UUID eventId) {
+ throw new UnsupportedOperationException();
+ }
}
\ No newline at end of file