Skip to content

Commit c4afa69

Browse files
committed
Fix checkstyle
1 parent 40926cb commit c4afa69

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

streampipes-data-export/src/main/java/org/apache/streampipes/export/resolver/GenericStorageDocumentResolver.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ public Map<String, Object> modifyDocumentForExport(Map<String, Object> document)
5353

5454
@Override
5555
public Map<String, Object> readDocument(String serializedDocument) throws JsonProcessingException {
56-
return SerializationUtils.getDefaultObjectMapper().readValue(serializedDocument, new TypeReference<>() {});
56+
return SerializationUtils.getDefaultObjectMapper().readValue(serializedDocument, new TypeReference<>() {
57+
});
5758
}
5859

5960
@Override
@@ -63,7 +64,8 @@ public ExportItem convert(Map<String, Object> document) {
6364
}
6465

6566
@Override
66-
public void writeDocument(String document, AssetExportConfiguration config) throws JsonProcessingException, DocumentConflictException {
67+
public void writeDocument(String document, AssetExportConfiguration config)
68+
throws JsonProcessingException, DocumentConflictException {
6769
try {
6870
getNoSqlStore().getGenericStorage().create(document);
6971
} catch (IOException e) {
@@ -73,7 +75,8 @@ public void writeDocument(String document, AssetExportConfiguration config) thro
7375

7476
@Override
7577
public Map<String, Object> deserializeDocument(String document) throws JsonProcessingException {
76-
return SerializationUtils.getDefaultObjectMapper().readValue(document, new TypeReference<>() {});
78+
return SerializationUtils.getDefaultObjectMapper().readValue(document, new TypeReference<>() {
79+
});
7780
}
7881

7982
@Override

0 commit comments

Comments
 (0)