remove from 'No comments found.' from apiNote tag
This commit is contained in:
parent
5bb5f11fec
commit
199f6f3beb
|
@ -316,7 +316,11 @@ public class DocUtil {
|
||||||
if (map != null && map.size() > 0) {
|
if (map != null && map.size() > 0) {
|
||||||
Map.Entry<String, String> entry = map.entrySet().iterator().next();
|
Map.Entry<String, String> entry = map.entrySet().iterator().next();
|
||||||
if (entry != null) {
|
if (entry != null) {
|
||||||
|
if(DocGlobalConstants.NO_COMMENTS_FOUND.equals(entry.getValue())){
|
||||||
|
value = entry.getKey();
|
||||||
|
}else{
|
||||||
value = entry.getKey() + entry.getValue();
|
value = entry.getKey() + entry.getValue();
|
||||||
|
}
|
||||||
value = value.replace("\r\n", "<br/>");
|
value = value.replace("\r\n", "<br/>");
|
||||||
value = value.replace("\r", "<br/>");
|
value = value.replace("\r", "<br/>");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue