Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Environment:Grails 2.0.0.RC3
Description
After reading the source code, I have found that Line 27-30 from RemotePaginationTagLib.groovy using (int) to store a possible null pointer (params.max?.toInteger()) which had caused an error for me.
Should use (def) or (Integer) instead.