File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/edu/ie3/datamodel/io/connectors Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -212,15 +212,15 @@ public BufferedReader initReader(String filePath) throws FileNotFoundException {
212212 * possible readers will be initialized.
213213 * @return A mapping from column scheme to the individual time series meta information
214214 */
215- public Map <UUID , edu . ie3 . datamodel . io . csv . CsvIndividualTimeSeriesMetaInformation >
215+ public Map <UUID , CsvIndividualTimeSeriesMetaInformation >
216216 getCsvIndividualTimeSeriesMetaInformation (final ColumnScheme ... columnSchemes ) {
217217 return getIndividualTimeSeriesFilePaths ().parallelStream ()
218218 .map (
219219 filePath -> {
220220 /* Extract meta information from file path and enhance it with the file path itself */
221221 IndividualTimeSeriesMetaInformation metaInformation =
222222 fileNamingStrategy .individualTimeSeriesMetaInformation (filePath );
223- return new edu . ie3 . datamodel . io . csv . CsvIndividualTimeSeriesMetaInformation (
223+ return new CsvIndividualTimeSeriesMetaInformation (
224224 metaInformation , FileNamingStrategy .removeFileNameEnding (filePath ));
225225 })
226226 .filter (
You can’t perform that action at this time.
0 commit comments