bug5797: refactored wind importers and track importers

This commit is contained in:
Axel Uhl
2022-12-29 13:11:44 +01:00
parent e86232fc3b
commit f5cb20ec0a
16 changed files with 131 additions and 66 deletions
@@ -156,13 +156,14 @@ public class GribWindFieldFactoryImpl implements GribWindFieldFactory {
}
@Override
public GribWindField createGribWindFieldFromStreams(Map<InputStream, String> streamsAndFilenames) throws IOException {
public GribWindField createGribWindFieldFromStreams(
Map<InputStream, String> streamsAndFilenames) throws IOException {
return createGribWindFieldFromStreams(logger, DEFAULT_ERROR_LOG_LEVEL, streamsAndFilenames);
}
@Override
public GribWindField createGribWindFieldFromStreams(Logger logger, Level level, Map<InputStream, String> streamsAndFilenames)
throws IOException {
public GribWindField createGribWindFieldFromStreams(Logger logger, Level level,
Map<InputStream, String> streamsAndFilenames) throws IOException {
return createGribWindFieldFromStreams(createLogFormatter(logger, level), streamsAndFilenames);
}