mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-05 16:49:06 +00:00
26 lines
450 B
Java
26 lines
450 B
Java
package org.apollo.jagcached;
|
|
|
|
/**
|
|
* 2006Redone Development
|
|
*
|
|
* @author Ryley Kimmel <ryley.kimmel@live.com>
|
|
* Jul 9, 2013
|
|
* Constants.java
|
|
*
|
|
* @see java.lang.Object
|
|
*/
|
|
public final class Constants {
|
|
|
|
/**
|
|
* The directory of the file system.
|
|
*/
|
|
public static final String FILE_SYSTEM_DIR = "./cache/";
|
|
|
|
/**
|
|
* Default private constructor to prevent instantiation.
|
|
*/
|
|
private Constants() {
|
|
super();
|
|
}
|
|
|
|
} |