we now support all image types via the image/* content-type. if a type is
[mir.git] / source / mir / media / MediaHandlerImagesGif.java
diff --git a/source/mir/media/MediaHandlerImagesGif.java b/source/mir/media/MediaHandlerImagesGif.java
deleted file mode 100755 (executable)
index 5b940c4..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-
-package mir.media;
-
-import java.lang.*;
-import java.io.*;
-import java.util.*;
-import java.sql.*;
-
-import mir.entity.*;
-
-/**
- * This class handles saving, fetching creating representations
- * for gif images. it overrides MediaHandlerImages.
- *
- * @see mir.media.MediaHandlerImages
- * @see mir.media.MirMedia
- * @author mh
- * @version 24.09.2001
- */
-
-
-public class MediaHandlerImagesGif extends MediaHandlerImages implements MirMedia
-{
-
-       public boolean set(byte[] uploadData, Entity ent, Entity mediaTypeEnt)
-           throws MirMediaException {
-
-        imageType = WEBDB_GIF;
-        try {
-            return super.set(uploadData, ent, mediaTypeEnt);
-        } catch (Exception e) {
-            throw new MirMediaException(e.toString());
-        }
-    }
-}