Remove the mark only if the mark is present on the page. @param page The page to remove the mark from. @return If the mark was present.
(WebPage page)
| 53 | * @return If the mark was present. |
| 54 | */ |
| 55 | public Utf8 removeMarkIfExist(WebPage page) { |
| 56 | if (checkMark(page) != null) { |
| 57 | return removeMark(page); |
| 58 | } |
| 59 | return null; |
| 60 | } |
| 61 | |
| 62 | public Utf8 getName() { |
| 63 | return name; |
no test coverage detected