Files
2006Scape/2006Redone file_server/src/org/apollo/jagcached/Constants.java
T
2019-06-18 15:04:35 -04:00

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();
}
}