From 75c04eb81ce5075c405dbf07d1e325b6019297b3 Mon Sep 17 00:00:00 2001 From: Eliot Jones Date: Sun, 5 Apr 2020 17:58:31 +0100 Subject: [PATCH] fix namespace using order --- .../Export/SvgTextExporter.cs | 5 ++--- src/UglyToad.PdfPig.Tests/Integration/LaTexTests.cs | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/SvgTextExporter.cs b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/SvgTextExporter.cs index 3b40633b..9193ab08 100644 --- a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/SvgTextExporter.cs +++ b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/SvgTextExporter.cs @@ -1,11 +1,10 @@ -using System.Xml; - -namespace UglyToad.PdfPig.DocumentLayoutAnalysis.Export +namespace UglyToad.PdfPig.DocumentLayoutAnalysis.Export { using System; using System.Collections.Generic; using System.Linq; using System.Text; + using System.Xml; using Content; using Graphics; using Graphics.Colors; diff --git a/src/UglyToad.PdfPig.Tests/Integration/LaTexTests.cs b/src/UglyToad.PdfPig.Tests/Integration/LaTexTests.cs index 95ddf844..960f986d 100644 --- a/src/UglyToad.PdfPig.Tests/Integration/LaTexTests.cs +++ b/src/UglyToad.PdfPig.Tests/Integration/LaTexTests.cs @@ -1,12 +1,11 @@ -using UglyToad.PdfPig.DocumentLayoutAnalysis.Export; - -namespace UglyToad.PdfPig.Tests.Integration +namespace UglyToad.PdfPig.Tests.Integration { using System; using System.Collections.Generic; using System.IO; using System.Linq; using PdfPig.Core; + using DocumentLayoutAnalysis.Export; using Xunit; public class LaTexTests