Skip to content

Commit e3ce80e

Browse files
committed
Re-add imports; change namespaces
1 parent 1159ff0 commit e3ce80e

9 files changed

+28
-2
lines changed

src/SIL.Machine/Corpora/PlaceMarkersUsfmUpdateBlockHandler.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
using System.Collections.Generic;
2+
using System.Linq;
3+
using SIL.Extensions;
14
using SIL.Machine.Translation;
25

36
namespace SIL.Machine.Corpora

src/SIL.Machine/PunctuationAnalysis/FallbackQuotationMarkResolver.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
using System.Collections.Generic;
2+
using System.Linq;
3+
14
namespace SIL.Machine.PunctuationAnalysis
25
{
36
public class FallbackQuotationMarkResolver : IQuotationMarkResolver

src/SIL.Machine/PunctuationAnalysis/ParatextProjectQuoteConventionDetector.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
using System;
2+
using System.IO;
3+
using System.Text;
4+
using SIL.Machine.Corpora;
5+
16
namespace SIL.Machine.PunctuationAnalysis
27
{
38
public abstract class ParatextProjectQuoteConventionDetector

src/SIL.Machine/PunctuationAnalysis/QuotationMarkUpdateFirstPass.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
15
namespace SIL.Machine.PunctuationAnalysis
26
{
37
// Determines the best strategy to take for each chapter

src/SIL.Machine/PunctuationAnalysis/QuotationMarkUpdateResolutionSettings.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
using System.Collections.Generic;
2+
using System.Text.RegularExpressions;
3+
14
namespace SIL.Machine.PunctuationAnalysis
25
{
36
public class QuotationMarkUpdateResolutionSettings : IQuotationMarkResolutionSettings

src/SIL.Machine/PunctuationAnalysis/QuotationMarkUpdateSettings.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
using System.Collections.Generic;
2+
13
namespace SIL.Machine.PunctuationAnalysis
24
{
35
public class QuotationMarkUpdateSettings

src/SIL.Machine/PunctuationAnalysis/QuoteConventionChangingUsfmUpdateBlockHandler.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
using System.Collections.Generic;
2+
using System.Linq;
3+
using SIL.Machine.Corpora;
4+
15
namespace SIL.Machine.PunctuationAnalysis
26
{
37
public class QuoteConventionChangingUsfmUpdateBlockHandler : IUsfmUpdateBlockHandler

src/SIL.Machine/Corpora/ZipParatextProjectQuoteConventionDetector.cs renamed to src/SIL.Machine/PunctuationAnalysis/ZipParatextProjectQuoteConventionDetector.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
using System.IO;
22
using System.IO.Compression;
3+
using SIL.Machine.Corpora;
34

4-
namespace SIL.Machine.Corpora
5+
namespace SIL.Machine.PunctuationAnalysis
56
{
67
public class ZipParatextProjectQuoteConventionDetector : ParatextProjectQuoteConventionDetector
78
{

tests/SIL.Machine.Tests/Corpora/MemoryParatextProjectQuoteConvetionDetector.cs renamed to tests/SIL.Machine.Tests/PunctuationAnalysis/MemoryParatextProjectQuoteConvetionDetector.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Text;
2+
using SIL.Machine.Corpora;
23

3-
namespace SIL.Machine.Corpora;
4+
namespace SIL.Machine.PunctuationAnalysis;
45

56
public class MemoryParatextProjectQuoteConventionDetector(
67
ParatextProjectSettings settings,

0 commit comments

Comments
 (0)