Skip to content
This repository has been archived by the owner on Mar 27, 2018. It is now read-only.

Commit

Permalink
Restore Excluders in CompoundSpgIterator
Browse files Browse the repository at this point in the history
  • Loading branch information
c-mita committed Feb 28, 2017
1 parent fb36b4c commit af0f340
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import java.util.Collection;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;

import org.eclipse.dawnsci.analysis.dataset.roi.CircularROI;
import org.eclipse.dawnsci.analysis.dataset.roi.EllipticalROI;
Expand Down Expand Up @@ -70,7 +69,7 @@ public CompoundSpgIterator(CompoundGenerator gen) throws GeneratorException {

JythonObjectFactory compoundGeneratorFactory = ScanPointGeneratorFactory.JCompoundGeneratorFactory();

Object[] excluders = {}; //getExcluders(gen.getModel().getRegions()); TODO put back in when excluders are fixed in Python
Object[] excluders = getExcluders(gen.getModel().getRegions());
Object[] mutators = getMutators(gen.getModel().getMutators());

@SuppressWarnings("unchecked")
Expand Down

0 comments on commit af0f340

Please sign in to comment.