Skip to content

Commit 7b559b2

Browse files
Committing clang-format changes
1 parent 1ea5a78 commit 7b559b2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/org.hdfgroup.hdfview/hdf/view/TableView/DataProviderFactory.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -739,11 +739,12 @@ else if (base instanceof ArrayDataProvider) {
739739
theValue = base.getDataValue(colValue, adjustedColIndex, rowIdx);
740740
}
741741
else if (base instanceof ComplexDataProvider) {
742-
int arrCompoundStartIdx = columnIndex;
742+
int arrCompoundStartIdx = columnIndex;
743743
HDFDataProvider theProvider;
744744
while (arrCompoundStartIdx >= 0) {
745745
try {
746-
theProvider = baseTypeProviders[baseProviderIndexMap.get(arrCompoundStartIdx - 1)];
746+
theProvider =
747+
baseTypeProviders[baseProviderIndexMap.get(arrCompoundStartIdx - 1)];
747748
if (theProvider != base)
748749
break;
749750

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

757758
int adjustedColIndex = columnIndex - arrCompoundStartIdx;
758759
log.trace("getDataValue: adjustedColIndex={}, columnIndex={}, arrCompoundStartIdx={}",
759-
adjustedColIndex, columnIndex, arrCompoundStartIdx);
760+
adjustedColIndex, columnIndex, arrCompoundStartIdx);
760761
rowIdx = rowIdx * 2;
761762

762763
theValue = base.getDataValue(colValue, adjustedColIndex, rowIdx);
763764
log.trace("getDataValue: theValue={}, rowIdx={}, adjustedColIndex={}", theValue, rowIdx,
764-
adjustedColIndex);
765+
adjustedColIndex);
765766
}
766767
else
767768
theValue = base.getDataValue(colValue, rowIdx);

0 commit comments

Comments
 (0)