()
| 68 | } |
| 69 | |
| 70 | @Override |
| 71 | public String toString() { |
| 72 | StringBuilder sb = new StringBuilder().append("StatefulFilter{") |
| 73 | .append("idx=").append(idx); |
| 74 | if (lastCfg != null) { |
| 75 | sb.append(", name=").append(lastCfg); |
| 76 | } |
| 77 | return sb.append("}").toString(); |
| 78 | } |
| 79 | |
| 80 | static final class Provider implements Filter.Provider { |
| 81 |
no test coverage detected