You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2017/02/26 23:37:51 UTC

[63/72] [abbrv] lucenenet git commit: Lucene.Net.TestFramework: Renamed namespace from Codecs.IntBlock to Codecs.MockIntBlock (as per the original)

Lucene.Net.TestFramework: Renamed namespace from Codecs.IntBlock to Codecs.MockIntBlock (as per the original)


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/63b45ce0
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/63b45ce0
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/63b45ce0

Branch: refs/heads/api-work
Commit: 63b45ce00f3d9a8ccd3603b1f43ad842dacbaf24
Parents: 7c9f572
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Sun Feb 26 03:29:02 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Mon Feb 27 06:17:59 2017 +0700

----------------------------------------------------------------------
 .../Codecs/MockIntBlock/MockFixedIntBlockPostingsFormat.cs        | 3 ++-
 .../Codecs/MockIntBlock/MockVariableIntBlockPostingsFormat.cs     | 3 ++-
 .../IntBlock/TestFixedIntBlockPostingsFormat.cs                   | 3 ++-
 src/Lucene.Net.Tests.Codecs/IntBlock/TestIntBlockCodec.cs         | 3 ++-
 .../IntBlock/TestVariableIntBlockPostingsFormat.cs                | 3 ++-
 5 files changed, 10 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/63b45ce0/src/Lucene.Net.TestFramework/Codecs/MockIntBlock/MockFixedIntBlockPostingsFormat.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.TestFramework/Codecs/MockIntBlock/MockFixedIntBlockPostingsFormat.cs b/src/Lucene.Net.TestFramework/Codecs/MockIntBlock/MockFixedIntBlockPostingsFormat.cs
index 0f78113..31e8731 100644
--- a/src/Lucene.Net.TestFramework/Codecs/MockIntBlock/MockFixedIntBlockPostingsFormat.cs
+++ b/src/Lucene.Net.TestFramework/Codecs/MockIntBlock/MockFixedIntBlockPostingsFormat.cs
@@ -1,10 +1,11 @@
 \ufeffusing Lucene.Net.Codecs.BlockTerms;
+using Lucene.Net.Codecs.IntBlock;
 using Lucene.Net.Codecs.Sep;
 using Lucene.Net.Index;
 using Lucene.Net.Store;
 using Lucene.Net.Util;
 
-namespace Lucene.Net.Codecs.IntBlock
+namespace Lucene.Net.Codecs.MockIntBlock
 {
     /*
      * Licensed to the Apache Software Foundation (ASF) under one or more

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/63b45ce0/src/Lucene.Net.TestFramework/Codecs/MockIntBlock/MockVariableIntBlockPostingsFormat.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.TestFramework/Codecs/MockIntBlock/MockVariableIntBlockPostingsFormat.cs b/src/Lucene.Net.TestFramework/Codecs/MockIntBlock/MockVariableIntBlockPostingsFormat.cs
index 6cb6990..b152a10 100644
--- a/src/Lucene.Net.TestFramework/Codecs/MockIntBlock/MockVariableIntBlockPostingsFormat.cs
+++ b/src/Lucene.Net.TestFramework/Codecs/MockIntBlock/MockVariableIntBlockPostingsFormat.cs
@@ -1,11 +1,12 @@
 \ufeffusing Lucene.Net.Codecs.BlockTerms;
+using Lucene.Net.Codecs.IntBlock;
 using Lucene.Net.Codecs.Sep;
 using Lucene.Net.Index;
 using Lucene.Net.Store;
 using Lucene.Net.Util;
 using System.Diagnostics;
 
-namespace Lucene.Net.Codecs.IntBlock
+namespace Lucene.Net.Codecs.MockIntBlock
 {
     /*
      * Licensed to the Apache Software Foundation (ASF) under one or more

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/63b45ce0/src/Lucene.Net.Tests.Codecs/IntBlock/TestFixedIntBlockPostingsFormat.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Tests.Codecs/IntBlock/TestFixedIntBlockPostingsFormat.cs b/src/Lucene.Net.Tests.Codecs/IntBlock/TestFixedIntBlockPostingsFormat.cs
index 26b2684..4aa7219 100644
--- a/src/Lucene.Net.Tests.Codecs/IntBlock/TestFixedIntBlockPostingsFormat.cs
+++ b/src/Lucene.Net.Tests.Codecs/IntBlock/TestFixedIntBlockPostingsFormat.cs
@@ -1,4 +1,5 @@
-\ufeffusing Lucene.Net.Index;
+\ufeffusing Lucene.Net.Codecs.MockIntBlock;
+using Lucene.Net.Index;
 using Lucene.Net.Util;
 using NUnit.Framework;
 

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/63b45ce0/src/Lucene.Net.Tests.Codecs/IntBlock/TestIntBlockCodec.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Tests.Codecs/IntBlock/TestIntBlockCodec.cs b/src/Lucene.Net.Tests.Codecs/IntBlock/TestIntBlockCodec.cs
index 582a684..6429ae1 100644
--- a/src/Lucene.Net.Tests.Codecs/IntBlock/TestIntBlockCodec.cs
+++ b/src/Lucene.Net.Tests.Codecs/IntBlock/TestIntBlockCodec.cs
@@ -1,4 +1,5 @@
-\ufeffusing Lucene.Net.Codecs.Sep;
+\ufeffusing Lucene.Net.Codecs.MockIntBlock;
+using Lucene.Net.Codecs.Sep;
 using Lucene.Net.Store;
 using Lucene.Net.Util;
 using NUnit.Framework;

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/63b45ce0/src/Lucene.Net.Tests.Codecs/IntBlock/TestVariableIntBlockPostingsFormat.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Tests.Codecs/IntBlock/TestVariableIntBlockPostingsFormat.cs b/src/Lucene.Net.Tests.Codecs/IntBlock/TestVariableIntBlockPostingsFormat.cs
index c255c90..23bc8fd 100644
--- a/src/Lucene.Net.Tests.Codecs/IntBlock/TestVariableIntBlockPostingsFormat.cs
+++ b/src/Lucene.Net.Tests.Codecs/IntBlock/TestVariableIntBlockPostingsFormat.cs
@@ -1,4 +1,5 @@
-\ufeffusing Lucene.Net.Index;
+\ufeffusing Lucene.Net.Codecs.MockIntBlock;
+using Lucene.Net.Index;
 using Lucene.Net.Util;
 using NUnit.Framework;