| 26 | package bsh; |
| 27 | |
| 28 | public class KnownIssue implements TestFilter { |
| 29 | |
| 30 | static final boolean SKIP_KOWN_ISSUES = System.getProperties().containsKey("skip_known_issues"); |
| 31 | |
| 32 | public boolean skip() { |
| 33 | return SKIP_KOWN_ISSUES; |
| 34 | } |
| 35 | |
| 36 | } |
nothing calls this directly
no test coverage detected