Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 1835B200C50 for ; Tue, 28 Feb 2017 13:29:56 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 17080160B86; Tue, 28 Feb 2017 12:29:56 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2E2D2160B85 for ; Tue, 28 Feb 2017 13:29:55 +0100 (CET) Received: (qmail 84900 invoked by uid 500); 28 Feb 2017 12:29:54 -0000 Mailing-List: contact commits-help@lucenenet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@lucenenet.apache.org Delivered-To: mailing list commits@lucenenet.apache.org Received: (qmail 84169 invoked by uid 99); 28 Feb 2017 12:29:52 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Feb 2017 12:29:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 778C6ED495; Tue, 28 Feb 2017 12:29:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: nightowl888@apache.org To: commits@lucenenet.apache.org Date: Tue, 28 Feb 2017 12:30:00 -0000 Message-Id: In-Reply-To: <56401688ae5d424c984e1575efac6bc8@git.apache.org> References: <56401688ae5d424c984e1575efac6bc8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [09/20] lucenenet git commit: Lucene.Net.Core.Util.PriorityQueue: Added TODO about making the HeapArray into a writable property archived-at: Tue, 28 Feb 2017 12:29:56 -0000 Lucene.Net.Core.Util.PriorityQueue: Added TODO about making the HeapArray into a writable property Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/84f26aa2 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/84f26aa2 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/84f26aa2 Branch: refs/heads/api-work Commit: 84f26aa25889b3896ada0e357f395cc2bec84f32 Parents: eef1e45 Author: Shad Storhaug Authored: Tue Feb 28 04:29:02 2017 +0700 Committer: Shad Storhaug Committed: Tue Feb 28 05:09:54 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net.Core/Util/PriorityQueue.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/84f26aa2/src/Lucene.Net.Core/Util/PriorityQueue.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Core/Util/PriorityQueue.cs b/src/Lucene.Net.Core/Util/PriorityQueue.cs index 7307ee1..5ad6426 100644 --- a/src/Lucene.Net.Core/Util/PriorityQueue.cs +++ b/src/Lucene.Net.Core/Util/PriorityQueue.cs @@ -309,7 +309,7 @@ namespace Lucene.Net.Util /// this method returns the internal heap array as T[]. /// @lucene.internal /// - protected T[] GetHeapArray() + protected T[] GetHeapArray() // LUCENENET TODO: Change to HeapArray property (writable) { return heap; }