Author: tv
Date: Wed Jan 8 11:13:51 2014
New Revision: 1556491
URL: http://svn.apache.org/r1556491
Log:
Remove generics from class
Modified:
commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/JCS.java
Modified: commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/JCS.java
URL:
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/JCS.java?rev=1556491&r1=1556490&r2=1556491&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/JCS.java (original)
+++ commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/JCS.java Wed Jan
8 11:13:51 2014
@@ -33,12 +33,12 @@ import org.apache.commons.jcs.engine.con
/**
* Simple class for using JCS. To use JCS in your application, you can use the
static methods of
- * this class to get access objects (instances of this class) for your cache
regions. Ideally this
- * class should be all you need to import to use JCS. One JCS should be
created for each region you
- * want to access. If you have several regions, then get instances for each.
For best performance
- * the getInstance call should be made in an initialization method.
+ * this class to get access objects (instances of this class) for your cache
regions. One CacheAccess
+ * object should be created for each region you want to access. If you have
several regions, then
+ * get instances for each. For best performance the getInstance call should be
made in an
+ * initialization method.
*/
-public abstract class JCS<K extends Serializable, V extends Serializable>
+public abstract class JCS
{
/** cache.ccf alternative. */
private static String configFilename = null;