01: package org.hanseltest; 02: 03: public class CoverProbeFilter { 04: 05: public CoverProbeFilter() { 06: if (filterThis()) { 07: 08: } 09: } 10: 11: private boolean filterThis() { 12: return false; 13: } 14: }