Remove unused field
This commit is contained in:
parent
d0cf299617
commit
9ff4e8d189
1 changed files with 0 additions and 2 deletions
|
@ -32,12 +32,10 @@ public class CsvExportServiceImpl implements CsvExportService {
|
||||||
private final FlightRepository flightRepository;
|
private final FlightRepository flightRepository;
|
||||||
|
|
||||||
private final String fileName;
|
private final String fileName;
|
||||||
private String neverUsedField;
|
|
||||||
|
|
||||||
public CsvExportServiceImpl(FlightRepository flightRepository, @Value("${csv.export.flight.fileName}") String fileName) {
|
public CsvExportServiceImpl(FlightRepository flightRepository, @Value("${csv.export.flight.fileName}") String fileName) {
|
||||||
this.flightRepository = flightRepository;
|
this.flightRepository = flightRepository;
|
||||||
this.fileName = fileName;
|
this.fileName = fileName;
|
||||||
this.neverUsedField = "redundant";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue