Commit 23cc2a25 authored by Tom Evans's avatar Tom Evans

OF-821: Incorporate review feedback

Drop unnecessary null check.
parent ff1870ff
......@@ -203,7 +203,7 @@ public class DiscoItem implements Result {
@Override
public String toString() {
return element == null ? null : element.asXML();
return element.asXML();
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment