Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 20, 2024
1 parent 1ea5a78 commit 7b559b2
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -739,11 +739,12 @@ else if (base instanceof ArrayDataProvider) {
theValue = base.getDataValue(colValue, adjustedColIndex, rowIdx);
}
else if (base instanceof ComplexDataProvider) {
int arrCompoundStartIdx = columnIndex;
int arrCompoundStartIdx = columnIndex;
HDFDataProvider theProvider;
while (arrCompoundStartIdx >= 0) {
try {
theProvider = baseTypeProviders[baseProviderIndexMap.get(arrCompoundStartIdx - 1)];
theProvider =
baseTypeProviders[baseProviderIndexMap.get(arrCompoundStartIdx - 1)];
if (theProvider != base)
break;

Expand All @@ -756,12 +757,12 @@ else if (base instanceof ComplexDataProvider) {

int adjustedColIndex = columnIndex - arrCompoundStartIdx;
log.trace("getDataValue: adjustedColIndex={}, columnIndex={}, arrCompoundStartIdx={}",
adjustedColIndex, columnIndex, arrCompoundStartIdx);
adjustedColIndex, columnIndex, arrCompoundStartIdx);
rowIdx = rowIdx * 2;

theValue = base.getDataValue(colValue, adjustedColIndex, rowIdx);
log.trace("getDataValue: theValue={}, rowIdx={}, adjustedColIndex={}", theValue, rowIdx,
adjustedColIndex);
adjustedColIndex);
}
else
theValue = base.getDataValue(colValue, rowIdx);
Expand Down

0 comments on commit 7b559b2

Please sign in to comment.