compat -> ui.compat
[nikiroo-utils.git] / src / be / nikiroo / utils / compat / ListModel6.java
diff --git a/src/be/nikiroo/utils/compat/ListModel6.java b/src/be/nikiroo/utils/compat/ListModel6.java
deleted file mode 100644 (file)
index a1f8c60..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-package be.nikiroo.utils.compat;
-
-import javax.swing.JList;
-
-/**
- * Compatibility layer so I can at least get rid of the warnings of using
- * {@link JList} without a parameter (and still staying Java 1.6 compatible).
- * <p>
- * This class is merely a {@link javax.swing.ListModel} that you can parametrise
- * also in Java 1.6.
- * 
- * @author niki
- *
- * @param <E>
- *            the type to use
- */
-@SuppressWarnings("rawtypes") // not compatible Java 1.6
-public interface ListModel6<E> extends javax.swing.ListModel {
-}