diff dwtx/jface/internal/InternalPolicy.d @ 104:04b47443bb01

Reworked the collection uses to make use of a wrapper collection that is compatible to the Java Collections. These new wrappers now use the tango.util.containers instead of the tango.util.collections.
author Frank Benoit <benoit@tionex.de>
date Thu, 07 Aug 2008 15:01:33 +0200
parents 1a6747be662d
children
line wrap: on
line diff
--- a/dwtx/jface/internal/InternalPolicy.d	Sun Aug 03 17:01:51 2008 +0200
+++ b/dwtx/jface/internal/InternalPolicy.d	Thu Aug 07 15:01:33 2008 +0200
@@ -12,7 +12,7 @@
  ******************************************************************************/
 module dwtx.jface.internal.InternalPolicy;
 
-import tango.util.collection.model.Map;
+import dwtx.dwtxhelper.Collection;
 
 /**
  * Internal class used for non-API debug flags.
@@ -33,5 +33,5 @@
      * (NON-API) Instead of logging current conflicts they can be
      * held here.  If there is a problem, they can be reported then.
      */
-    public static Map!(Object/+???+/,Object/+???+/) currentConflicts = null;
+    public static Map currentConflicts = null;
 }