(XML kid, StringBuilder buffer)
| 1003 | |
| 1004 | |
| 1005 | private void odsAppendNotNull(XML kid, StringBuilder buffer) { |
| 1006 | String content = kid.getContent(); |
| 1007 | if (content != null) { |
| 1008 | buffer.append(content); |
| 1009 | } |
| 1010 | } |
| 1011 | |
| 1012 | |
| 1013 | // A 'Class' object is used here, so the syntax for this function is: |
no test coverage detected