Details
-
Bug
-
Resolution: Fixed
-
Minor
-
3.2 RC1
-
None
-
Unknown
-
Description
/** * @param mode the ordering/storing algorithm used by the cache. */ public void setAlgotithm(Algorithm mode) { this.mode = mode; }
To be replaced by:
/** * @param mode the ordering/storing algorithm used by the cache. */ public void setAlgorithm(Algorithm mode) { this.mode = mode; }