Skip to content

Commit cc454b3

Browse files
committed
Spotless fix
1 parent a8dc601 commit cc454b3

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

openmetadata-service/src/main/java/org/openmetadata/service/search/indexes/PipelineIndex.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ public Set<String> getRequiredReindexFields() {
2525
return java.util.Collections.unmodifiableSet(fields);
2626
}
2727

28-
2928
public Map<String, Object> buildSearchIndexDocInternal(Map<String, Object> doc) {
3029
ParseTags parseTags = new ParseTags(Entity.getEntityTags(Entity.PIPELINE, pipeline));
3130
Map<String, Object> commonAttributes = getCommonAttributesMap(pipeline, Entity.PIPELINE);

openmetadata-service/src/main/java/org/openmetadata/service/search/indexes/SpreadsheetIndex.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public Set<String> getRequiredReindexFields() {
3535
return java.util.Collections.unmodifiableSet(fields);
3636
}
3737

38-
3938
public Map<String, Object> buildSearchIndexDocInternal(Map<String, Object> doc) {
4039
ParseTags parseTags = new ParseTags(Entity.getEntityTags(Entity.SPREADSHEET, spreadsheet));
4140
List<TagLabel> tags = new ArrayList<>();

openmetadata-service/src/main/java/org/openmetadata/service/search/indexes/TableIndex.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ public Set<String> getRequiredReindexFields() {
4848
return java.util.Collections.unmodifiableSet(fields);
4949
}
5050

51-
5251
public Map<String, Object> buildSearchIndexDocInternal(Map<String, Object> doc) {
5352
Set<List<TagLabel>> tagsWithChildren = new HashSet<>();
5453
List<String> columnsWithChildrenName = new ArrayList<>();

0 commit comments

Comments
 (0)