Skip to content

Commit

Permalink
Added static keyword to some classes
Browse files Browse the repository at this point in the history
  • Loading branch information
elendil-software committed Feb 6, 2019
1 parent 5ef7681 commit fc7e693
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion IPX800cs.Test/Parsers/v2/Http/IPX800v2HttpResponse.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace IPX800cs.Test.Parsers.v2.Http
{
public class IPX800v2HttpResponse
public static class IPX800v2HttpResponse
{
internal const string Xml = @"<response>
<led0>1</led0>
Expand Down
2 changes: 1 addition & 1 deletion IPX800cs.Test/Parsers/v3/Http/IPX800v3HttpResponse.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace IPX800cs.Test.Parsers.v3.Http
{
public class IPX800v3HttpResponse
public static class IPX800v3HttpResponse
{
internal const string Xml = @"<response>
<version>3.05.62</version>
Expand Down
2 changes: 1 addition & 1 deletion IPX800cs/Version/VersionParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace IPX800cs.Version
{
internal class VersionParser
internal static class VersionParser
{
public static System.Version Parse(string versionString)
{
Expand Down

0 comments on commit fc7e693

Please sign in to comment.