Skip to content

Commit

Permalink
Fixed checkstyle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kumarvishal09 committed Mar 29, 2019
1 parent 54262a4 commit 63274af
Showing 1 changed file with 4 additions and 3 deletions.
Expand Up @@ -336,7 +336,8 @@ public void clear() {
}
SegmentPropertiesAndSchemaHolder.SegmentPropertiesWrapper other =
(SegmentPropertiesAndSchemaHolder.SegmentPropertiesWrapper) obj;
return carbonTable.getAbsoluteTableIdentifier().equals(other.carbonTable.getAbsoluteTableIdentifier()) && checkColumnSchemaEquality(
return carbonTable.getAbsoluteTableIdentifier()
.equals(other.carbonTable.getAbsoluteTableIdentifier()) && checkColumnSchemaEquality(
columnsInTable, other.columnsInTable) && Arrays
.equals(columnCardinality, other.columnCardinality);
}
Expand Down Expand Up @@ -400,8 +401,8 @@ public CarbonRowSchema[] getTaskSummarySchemaForBlock(boolean storeBlockletCount
synchronized (taskSchemaLock) {
if (null == taskSummarySchemaForBlock) {
taskSummarySchemaForBlock = SchemaGenerator
.createTaskSummarySchema(segmentProperties, getMinMaxCacheColumns(), storeBlockletCount,
filePathToBeStored);
.createTaskSummarySchema(segmentProperties, getMinMaxCacheColumns(),
storeBlockletCount, filePathToBeStored);
}
}
}
Expand Down

0 comments on commit 63274af

Please sign in to comment.