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 2020/02/09 06:16:24 UTC

[lucenenet] 32/35: BREAKING: Lucene.Net.Benchmark.Support: Moved EnglishNumberFormatExtensions to Lucene.Net.Util namespace

This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit 67013f10205ac0f4ef0b4900647f19d4c89b0893
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Sat Feb 8 22:07:09 2020 +0700

    BREAKING: Lucene.Net.Benchmark.Support: Moved EnglishNumberFormatExtensions to Lucene.Net.Util namespace
---
 src/Lucene.Net.Benchmark/ByTask/Feeds/LongToEnglishContentSource.cs     | 2 +-
 .../Support/{ => Util}/EnglishNumberFormatExtensions.cs                 | 2 +-
 .../Support/TestEnglishNumberFormatExtensions.cs                        | 1 +
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/Lucene.Net.Benchmark/ByTask/Feeds/LongToEnglishContentSource.cs b/src/Lucene.Net.Benchmark/ByTask/Feeds/LongToEnglishContentSource.cs
index 7c407a2..7b4ab5f 100644
--- a/src/Lucene.Net.Benchmark/ByTask/Feeds/LongToEnglishContentSource.cs
+++ b/src/Lucene.Net.Benchmark/ByTask/Feeds/LongToEnglishContentSource.cs
@@ -1,4 +1,4 @@
-using Lucene.Net.Support;
+using Lucene.Net.Util;
 using System;
 using System.Globalization;
 
diff --git a/src/Lucene.Net.Benchmark/Support/EnglishNumberFormatExtensions.cs b/src/Lucene.Net.Benchmark/Support/Util/EnglishNumberFormatExtensions.cs
similarity index 99%
rename from src/Lucene.Net.Benchmark/Support/EnglishNumberFormatExtensions.cs
rename to src/Lucene.Net.Benchmark/Support/Util/EnglishNumberFormatExtensions.cs
index 881f421..0a410f3 100644
--- a/src/Lucene.Net.Benchmark/Support/EnglishNumberFormatExtensions.cs
+++ b/src/Lucene.Net.Benchmark/Support/Util/EnglishNumberFormatExtensions.cs
@@ -1,7 +1,7 @@
 using System;
 using System.Text;
 
-namespace Lucene.Net.Support
+namespace Lucene.Net.Util
 {
     /*
      * Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/src/Lucene.Net.Tests.Benchmark/Support/TestEnglishNumberFormatExtensions.cs b/src/Lucene.Net.Tests.Benchmark/Support/TestEnglishNumberFormatExtensions.cs
index 68cc70a..ac1bdff 100644
--- a/src/Lucene.Net.Tests.Benchmark/Support/TestEnglishNumberFormatExtensions.cs
+++ b/src/Lucene.Net.Tests.Benchmark/Support/TestEnglishNumberFormatExtensions.cs
@@ -1,4 +1,5 @@
 using Lucene.Net.Attributes;
+using Lucene.Net.Util;
 using NUnit.Framework;
 
 namespace Lucene.Net.Support