Index: branches/eraser6/pluginsRewrite/Eraser.Manager/EntropyPoller.cs
===================================================================
--- branches/eraser6/pluginsRewrite/Eraser.Manager/EntropyPoller.cs	(revision 2363)
+++ branches/eraser6/pluginsRewrite/Eraser.Manager/EntropyPoller.cs	(revision 2443)
@@ -83,5 +83,5 @@
 				st.Start();
 				lock (EntropySources)
-					foreach (EntropySource src in EntropySources)
+					foreach (IEntropySource src in EntropySources)
 					{
 						byte[] entropy = src.GetEntropy();
@@ -112,5 +112,5 @@
 		/// </summary>
 		/// <param name="source">The EntropySource object to add.</param>
-		public void AddEntropySource(EntropySource source)
+		public void AddEntropySource(IEntropySource source)
 		{
 			lock (EntropySources)
@@ -324,5 +324,5 @@
 		/// The list of entropy sources registered with the Poller.
 		/// </summary>
-		private List<EntropySource> EntropySources = new List<EntropySource>();
+		private List<IEntropySource> EntropySources = new List<IEntropySource>();
 	}
 }
