Skip to content

Commit ac238be

Browse files
committed
#1078 formatting
1 parent ecfb06a commit ac238be

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

gbif/ingestion/ingest-gbif-beam/src/main/java/org/gbif/pipelines/ingest/utils/HdfsViewAvroUtils.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ private static void copyOccurrence(InterpretationPipelineOptions options) {
3838
copyAndOverwrite(options, OCCURRENCE);
3939
}
4040

41-
private static void copyAndOverwriteTables(InterpretationPipelineOptions opt, RecordType coreType) {
41+
private static void copyAndOverwriteTables(
42+
InterpretationPipelineOptions opt, RecordType coreType) {
4243

4344
copyAndOverwrite(opt, coreType, MEASUREMENT_OR_FACT_TABLE, Extension.MEASUREMENT_OR_FACT);
4445
copyAndOverwrite(opt, coreType, IDENTIFICATION_TABLE, Extension.IDENTIFICATION);

gbif/ingestion/ingestion-integration-tests/src/test/java/org/gbif/pipelines/ingest/java/pipelines/HdfsViewPipelineIT.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ public void hdfsPipelineTest(String rootTestFolder, InterpretationType.RecordTyp
135135
assertFileExists(outputFn.apply("extendedmeasurementorfacttable"));
136136
assertFileExists(outputFn.apply("germplasmmeasurementtrialtable"));
137137

138-
//Next two interpretations were not in the list of interpretation types param, --interpretationTypes
138+
// Next two interpretations were not in the list of interpretation types param,
139+
// --interpretationTypes
139140
assertFileNotExists(outputFn.apply("permittable"));
140141
assertFileNotExists(outputFn.apply("loantable"));
141142
}
@@ -207,7 +208,7 @@ public void singleHdfsPipelineTest(
207208

208209
assertFile(OccurrenceHdfsRecord.class, outputFn.apply(recordType.name().toLowerCase()));
209210

210-
//Tables were not requested in the interpretation types
211+
// Tables were not requested in the interpretation types
211212
assertFileNotExists(outputFn.apply("measurementorfacttable"));
212213
assertFileNotExists(outputFn.apply("extendedmeasurementorfacttable"));
213214
assertFileNotExists(outputFn.apply("germplasmmeasurementtrialtable"));

gbif/ingestion/ingestion-integration-tests/src/test/java/org/gbif/pipelines/ingest/pipelines/HdfsViewPipelineIT.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@ public void pipelineAllTest() throws Exception {
210210
assertFileExists(outputFn.apply("audubontable"));
211211
assertFileExists(outputFn.apply("extendedmeasurementorfacttable"));
212212

213-
//Next two interpretations were not in the list of interpretation types param, --interpretationTypes
213+
// Next two interpretations were not in the list of interpretation types param,
214+
// --interpretationTypes
214215
assertFileNotExists(outputFn.apply("permittable"));
215216
assertFileNotExists(outputFn.apply("loantable"));
216217
}

0 commit comments

Comments
 (0)