(Contribution contrib, String typed)
| 608 | |
| 609 | |
| 610 | static protected boolean matches(Contribution contrib, String typed) { |
| 611 | String search = ".*" + typed.toLowerCase() + ".*"; |
| 612 | |
| 613 | return (matchField(contrib.getName(), search) || |
| 614 | matchField(contrib.getSentence(), search) || |
| 615 | matchField(contrib.getAuthorList(), search) || |
| 616 | matchField(contrib.getParagraph(), search)); |
| 617 | } |
| 618 | |
| 619 | |
| 620 | static private boolean matchField(String field, String regex) { |
nothing calls this directly
no test coverage detected