Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
None
-
None
-
None
-
Operating System: All
Platform: All
-
32655
Description
Code fragment from 'cookbook' is incorrect:
in 'ProfileCheck' class the method 'newProfile' should return 'Profile' not a
boolean.
public boolean newProfile(Context context)
{ return new Profile(); }should be:
public Profile newProfile(Context context) { return new Profile(); }