Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.2 RC1
-
Fix Version/s: 3.3-milestone-1
-
Component/s: {Unused} Cache
-
Labels:None
-
Difficulty:Unknown
-
Similar issues:
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; }