From de5848b69d33e19a9b85f0a00c0993742d17a2f9 Mon Sep 17 00:00:00 2001 From: alterNERDtive Date: Thu, 3 Feb 2022 19:23:37 +0100 Subject: [PATCH] Spring cleaning. --- EDNA/StarSystem.cs | 2 +- Test/EDNA/DistanceTest.cs | 4 ++-- Test/EDNA/StarSystemTest.cs | 10 ++-------- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/EDNA/StarSystem.cs b/EDNA/StarSystem.cs index 1a253e6..e344e82 100644 --- a/EDNA/StarSystem.cs +++ b/EDNA/StarSystem.cs @@ -95,7 +95,7 @@ namespace alterNERDtive.Edna /// /// Finds a star system by id64. /// - /// The system’s id64 + /// The system’s id64. /// The matching system. public static StarSystem Find(ulong id64) { diff --git a/Test/EDNA/DistanceTest.cs b/Test/EDNA/DistanceTest.cs index e4b20c2..42b4c27 100644 --- a/Test/EDNA/DistanceTest.cs +++ b/Test/EDNA/DistanceTest.cs @@ -27,11 +27,11 @@ using Xunit; namespace Test.Edna { - /// /// Tests all thisg Distance. /// - public class DistanceTest { + public class DistanceTest + { /// /// Tests if the calculations are correct for some known distances. /// diff --git a/Test/EDNA/StarSystemTest.cs b/Test/EDNA/StarSystemTest.cs index 79cd1aa..7c6f02b 100644 --- a/Test/EDNA/StarSystemTest.cs +++ b/Test/EDNA/StarSystemTest.cs @@ -1,4 +1,4 @@ -// +// // Copyright 2021 alterNERDtive. // // This file is part of EDNA. @@ -17,14 +17,8 @@ // along with EDNA. If not, see <https://www.gnu.org/licenses/>. // -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Xunit; - using alterNERDtive.Edna; +using Xunit; namespace Test.Edna {