Return-Path: Delivered-To: apmail-incubator-lucene-net-commits-archive@minotaur.apache.org Received: (qmail 95493 invoked from network); 12 Nov 2009 16:39:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 12 Nov 2009 16:39:45 -0000 Received: (qmail 59616 invoked by uid 500); 12 Nov 2009 16:39:44 -0000 Delivered-To: apmail-incubator-lucene-net-commits-archive@incubator.apache.org Received: (qmail 59588 invoked by uid 500); 12 Nov 2009 16:39:44 -0000 Mailing-List: contact lucene-net-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@incubator.apache.org Delivered-To: mailing list lucene-net-commits@incubator.apache.org Received: (qmail 59579 invoked by uid 99); 12 Nov 2009 16:39:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Nov 2009 16:39:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Nov 2009 16:39:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 50E2C23888E8; Thu, 12 Nov 2009 16:39:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r835436 - /incubator/lucene.net/trunk/C#/src/Test/Store/MockRAMDirectory.cs Date: Thu, 12 Nov 2009 16:39:12 -0000 To: lucene-net-commits@incubator.apache.org From: digy@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091112163912.50E2C23888E8@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: digy Date: Thu Nov 12 16:39:11 2009 New Revision: 835436 URL: http://svn.apache.org/viewvc?rev=835436&view=rev Log: (empty) Modified: incubator/lucene.net/trunk/C#/src/Test/Store/MockRAMDirectory.cs Modified: incubator/lucene.net/trunk/C#/src/Test/Store/MockRAMDirectory.cs URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Test/Store/MockRAMDirectory.cs?rev=835436&r1=835435&r2=835436&view=diff ============================================================================== --- incubator/lucene.net/trunk/C#/src/Test/Store/MockRAMDirectory.cs (original) +++ incubator/lucene.net/trunk/C#/src/Test/Store/MockRAMDirectory.cs Thu Nov 12 16:39:11 2009 @@ -119,7 +119,7 @@ int count = 0; while (it.MoveNext()) { - System.String name = (System.String) it.Current; + System.String name = (System.String) ((System.Collections.DictionaryEntry)it.Current).Value; RAMFile file = (RAMFile) fileMap_ForNUnit[name]; if (count % 3 == 0) {