diff --git a/dspace-api/src/test/java/org/dspace/discovery/MockIndexEventConsumer.java b/dspace-api/src/test/java/org/dspace/discovery/MockIndexEventConsumer.java index d3fae462ba..8fe44ab274 100644 --- a/dspace-api/src/test/java/org/dspace/discovery/MockIndexEventConsumer.java +++ b/dspace-api/src/test/java/org/dspace/discovery/MockIndexEventConsumer.java @@ -21,11 +21,6 @@ import org.dspace.event.Event; public class MockIndexEventConsumer extends MockUp { - - //public void initialize() throws Exception { - //do nothing - //} - @Mock public void consume(Context ctx, Event event) throws Exception { //do nothing - Solr is not running during unit testing, so we cannot index test content in Solr @@ -35,8 +30,4 @@ public class MockIndexEventConsumer public void end(Context ctx) throws Exception { //do nothing - Solr is not running during unit testing, so we cannot index test content in Solr } - - //public void finish(Context ctx) throws Exception { - //do nothing - //} }