Spring cleaning.

This commit is contained in:
alterNERDtive 2022-02-03 19:23:37 +01:00
parent 1baa1136ac
commit de5848b69d
3 changed files with 5 additions and 11 deletions

View file

@ -95,7 +95,7 @@ namespace alterNERDtive.Edna
/// <summary> /// <summary>
/// Finds a star system by id64. /// Finds a star system by id64.
/// </summary> /// </summary>
/// <param name="id64">The systems id64</param> /// <param name="id64">The systems id64.</param>
/// <returns>The matching system.</returns> /// <returns>The matching system.</returns>
public static StarSystem Find(ulong id64) public static StarSystem Find(ulong id64)
{ {

View file

@ -27,11 +27,11 @@ using Xunit;
namespace Test.Edna namespace Test.Edna
{ {
/// <summary> /// <summary>
/// Tests all thisg Distance. /// Tests all thisg Distance.
/// </summary> /// </summary>
public class DistanceTest { public class DistanceTest
{
/// <summary> /// <summary>
/// Tests if the calculations are correct for some known distances. /// Tests if the calculations are correct for some known distances.
/// </summary> /// </summary>

View file

@ -1,4 +1,4 @@
// <copyright file="SystemTest.cs" company="alterNERDtive"> // <copyright file="StarSystemTest.cs" company="alterNERDtive">
// Copyright 2021 alterNERDtive. // Copyright 2021 alterNERDtive.
// //
// This file is part of EDNA. // This file is part of EDNA.
@ -17,14 +17,8 @@
// along with EDNA. If not, see &lt;https://www.gnu.org/licenses/&gt;. // along with EDNA. If not, see &lt;https://www.gnu.org/licenses/&gt;.
// </copyright> // </copyright>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using alterNERDtive.Edna; using alterNERDtive.Edna;
using Xunit;
namespace Test.Edna namespace Test.Edna
{ {