-
Type:
Bug
-
Status: Closed
-
Resolution: Inactive
-
Affects Version/s: 6.1.1 CE GA2, 6.1.20 EE GA2, 6.1.30 EE GA3
-
Fix Version/s: None
-
Component/s: Documentation
-
Labels:None
-
Fix Priority:2
Steps to reproduce:
1. Turn on logging for JavadocManager
2. See the following warnings:
2012-11-15 08:16:11,807 -0800 level=INFO class=STDOUT 08:16:11,806 WARN [main][JavadocManager:201] Unable to load method GroupLocalServiceImpl from class com.liferay.portal.service.impl.GroupLocalServiceImpl 2012-11-15 08:16:11,907 -0800 level=INFO class=STDOUT 08:16:11,905 WARN [main][JavadocManager:201] Unable to load method filterTagIdsArray from class com.liferay.portlet.asset.service.impl.AssetEntryServiceImpl
The problems are that GroupLocalServiceImpl is incorrectly being identified as a method instead of a constuctor, so it is failing when "getDeclaredMethod" is called on it. For filterTagIdsArray, its parameter in the Javadoc is "long[]" but it is declared in the code as "long[][]".