Index: Keditor.Java/branches/2.4/src/main/java/net/fckeditor/ResourceType.java
===================================================================
--- /FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/ResourceType.java	(revision 1514)
+++ 	(revision )
@@ -1,59 +1,0 @@
-/*
- * FCKeditor - The text editor for Internet - http://www.fckeditor.net
- * Copyright (C) 2003-2008 Frederico Caldeira Knabben
- * 
- * == BEGIN LICENSE ==
- * 
- * Licensed under the terms of any of the following licenses at your
- * choice:
- * 
- *  - GNU General Public License Version 2 or later (the "GPL")
- *    http://www.gnu.org/licenses/gpl.html
- * 
- *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
- *    http://www.gnu.org/licenses/lgpl.html
- * 
- *  - Mozilla Public License Version 1.1 or later (the "MPL")
- *    http://www.mozilla.org/MPL/MPL-1.1.html
- * 
- * == END LICENSE ==
- */
-package net.fckeditor;
-
-/**
- * The different types of files to work with.
- * 
- * @version $Id$
- */
-public enum ResourceType {
-
-	Image, File, Flash, Media;
-
-	public String getPath() {
-		return "/" + name().toLowerCase();
-	}
-
-	public static ResourceType getDefaultResourceType(String name) {
-
-		ResourceType rt = getResourceType(name);
-
-		return rt == null ? File : rt;
-
-	}
-
-	public static ResourceType getResourceType(String name) {
-
-		try {
-			return ResourceType.valueOf(name);
-		} catch (IllegalArgumentException e) {
-			return null;
-		} catch (NullPointerException e) {
-			return null;
-		}
-	}
-
-	public static boolean isValid(final String name) {
-		return getResourceType(name) == null ? false : true;
-	}
-
-}
Index: /FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/SessionData.java
===================================================================
--- /FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/SessionData.java	(revision 1514)
+++ /FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/SessionData.java	(revision 1515)
@@ -22,6 +22,4 @@
 
 import javax.servlet.http.HttpServletRequest;
-
-import net.fckeditor.handlers.ConfigurationHandler;
 
 /**
