Skip to content

Commit

Permalink
Checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
tinwelint committed Dec 4, 2017
1 parent ae3689a commit bf3e6db
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,11 @@
*/
public class OnDemandDetailsExecutionMonitor implements ExecutionMonitor
{
public interface Monitor
interface Monitor
{
public void detailsPrinted();
void detailsPrinted();
}

public static final Monitor NO_MONITOR = new Monitor()
{
@Override
public void detailsPrinted()
{ // ignored
}
};

private final List<StageDetails> details = new ArrayList<>();
private final PrintStream out;
private final Map<String,Pair<String,Runnable>> actions = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
import java.util.function.Function;

import org.neo4j.csv.reader.SourceTraceability;
import org.neo4j.unsafe.impl.batchimport.input.csv.Configuration;
import org.neo4j.unsafe.impl.batchimport.input.csv.Deserialization;
import org.neo4j.unsafe.impl.batchimport.input.csv.Header.Entry;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.junit.Test;

import org.neo4j.csv.reader.Extractors;
import org.neo4j.unsafe.impl.batchimport.input.csv.Type;

import static org.junit.Assert.assertEquals;

Expand Down

0 comments on commit bf3e6db

Please sign in to comment.