Community
Participate
Working Groups
* @since 3.1
*/
protected boolean shouldShowDetailsButton() {
return status.isMultiStatus() || status.getException() != null;
return (status.isMultiStatus() && status.getChildren().length > 0)
|| status.getException() != null;
}
/**