diff mde/file/mergetag/Reader.d @ 85:56c0ddd90193

Intermediate commit (not stable). Changes to init system.
author Diggory Hardy <diggory.hardy@gmail.com>
date Thu, 11 Sep 2008 11:33:51 +0100
parents ac1e3fd07275
children 2212285f714c
line wrap: on
line diff
--- a/mde/file/mergetag/Reader.d	Sun Aug 31 15:59:17 2008 +0100
+++ b/mde/file/mergetag/Reader.d	Thu Sep 11 11:33:51 2008 +0100
@@ -32,8 +32,7 @@
 import tango.io.UnicodeFile;
 import Util = tango.text.Util;
 import ConvInt = tango.text.convert.Integer;
-//import tango.util.collection.model.View : View;
-import tango.util.collection.HashSet : HashSet;
+import tango.util.container.HashSet;
 import tango.util.log.Log : Log, Logger;
 
 private Logger logger;
@@ -305,7 +304,7 @@
         read (hs);
     }
     /** ditto */
-    public void read (View!(ID) secSet) {
+    public void read (IContainer!(ID) secSet) {
         if (allRead || fatal) return;			// never do anything in either case
         
         if (secTable.length) {
@@ -516,5 +515,5 @@
     }
     void read () {}                     /// Commence reading
     void read (ID[] secSet) {}          /// ditto
-    void read (View!(ID) secSet) {}     /// ditto
+    void read (IContainer!(ID) secSet) {}/// ditto
 }