Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up some code in PlatformSpecRunner
- In 'runFeature', the 'if (currentFeature.isSkipped())' code block is unnecessary, because it will never be executed, as 'runFeature' also will not be executed for skipped features. - In 'runSpec', add 'if (spec.isExcluded()) return;' analogous to the existing 'if (currentFeature.isExcluded()) return;' in 'runFeature', logically aligning the code structures in both methods. Relates to spockframework#1662.
- Loading branch information