From fc7e693e7ea223c5f506972959079197bde353fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Tsch=C3=A4pp=C3=A4t?= Date: Wed, 6 Feb 2019 21:42:21 +0100 Subject: [PATCH] Added static keyword to some classes --- IPX800cs.Test/Parsers/v2/Http/IPX800v2HttpResponse.cs | 2 +- IPX800cs.Test/Parsers/v3/Http/IPX800v3HttpResponse.cs | 2 +- IPX800cs/Version/VersionParser.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/IPX800cs.Test/Parsers/v2/Http/IPX800v2HttpResponse.cs b/IPX800cs.Test/Parsers/v2/Http/IPX800v2HttpResponse.cs index 6a6c756..ab13a8b 100644 --- a/IPX800cs.Test/Parsers/v2/Http/IPX800v2HttpResponse.cs +++ b/IPX800cs.Test/Parsers/v2/Http/IPX800v2HttpResponse.cs @@ -1,6 +1,6 @@ namespace IPX800cs.Test.Parsers.v2.Http { - public class IPX800v2HttpResponse + public static class IPX800v2HttpResponse { internal const string Xml = @" 1 diff --git a/IPX800cs.Test/Parsers/v3/Http/IPX800v3HttpResponse.cs b/IPX800cs.Test/Parsers/v3/Http/IPX800v3HttpResponse.cs index 238b528..f2a66b5 100644 --- a/IPX800cs.Test/Parsers/v3/Http/IPX800v3HttpResponse.cs +++ b/IPX800cs.Test/Parsers/v3/Http/IPX800v3HttpResponse.cs @@ -1,6 +1,6 @@ namespace IPX800cs.Test.Parsers.v3.Http { - public class IPX800v3HttpResponse + public static class IPX800v3HttpResponse { internal const string Xml = @" 3.05.62 diff --git a/IPX800cs/Version/VersionParser.cs b/IPX800cs/Version/VersionParser.cs index 5a38b34..3499310 100644 --- a/IPX800cs/Version/VersionParser.cs +++ b/IPX800cs/Version/VersionParser.cs @@ -2,7 +2,7 @@ namespace IPX800cs.Version { - internal class VersionParser + internal static class VersionParser { public static System.Version Parse(string versionString) {