Skip to content

Commit ae308cb

Browse files
committed
Remove debug qDebug logs in dataset check
Remove leftover qDebug() calls from DatasetsAction::setupPointSizeDatasetPickerAction to clean up noisy debug output during dataset validation. The changes eliminate three intermediate debug prints while preserving the validation logic that ensures the dataset is of PointType and matches the position dataset point count.
1 parent dc8d623 commit ae308cb

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/DatasetsAction.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -175,21 +175,16 @@ void DatasetsAction::setupPointSizeDatasetPickerAction(ScatterplotPlugin* scatte
175175
if (dataset->getDataType() != PointType)
176176
return false;
177177

178-
qDebug() << dataset->getGuiName() << "A";
179178
const auto positionDataset = scatterplotPlugin->getPositionDataset();
180179

181180
if (!positionDataset.isValid())
182181
return false;
183182

184-
qDebug() << dataset->getGuiName() << "B";
185-
186183
const mv::Dataset<Points> candidatePoints(dataset);
187184

188185
if (candidatePoints->getNumPoints() != positionDataset->getNumPoints())
189186
return false;
190187

191-
qDebug() << dataset->getGuiName() << "C";
192-
193188
return true;
194189
});
195190

0 commit comments

Comments
 (0)