Details
-
Bug
-
Status: Closed
-
Resolution: Won't Fix
-
6.2.0 CE B3
-
None
-
CentOS 6, tomcat 7.0.40
Description
Two search methods in UserGroupLocalServiceUtil can potentially have same method signature:
public static java.util.List<com.liferay.portal.model.UserGroup> search(
long companyId, java.lang.String keywords,
java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
throws com.liferay.portal.kernel.exception.SystemException
-> Javadoc indicates that keywords and obc can potentially be null.
public static com.liferay.portal.kernel.search.Hits search(long companyId,
java.lang.String keywords,
java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
int start, int end, com.liferay.portal.kernel.search.Sort sort)
throws com.liferay.portal.kernel.exception.SystemException
-> Javadoc indicates that keywords and sort can potentially be null.
In case that keywords and sort both are null, those two methods have same method signature.