Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jlechem committed Mar 4, 2024
1 parent 58d71bc commit a1c769d
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 16 deletions.
3 changes: 1 addition & 2 deletions IpViewer.BusinessObject/AdapterInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// IP Viewer, gets adapter and IP information about your system.
// Copyright(C) 2020 Sasquatch Software
// Copyright(C) 2020 Justin LeCheminant

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions IpViewer.BusinessObject/AdapterService.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// IP Viewer, gets adapter and IP information about your system.
// Copyright(C) 2020 Sasquatch Software
// Copyright(C) 2020 Justin LECheminant


// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
Expand Down
18 changes: 17 additions & 1 deletion IpViewer.BusinessObject/HostInformation.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
namespace IpViewer.BusinessObject
// Copyright(C) 2020 Justin LECheminant


// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.If not, see<https://www.gnu.org/licenses/>.

namespace IpViewer.BusinessObject
{
public class HostInformation
{
Expand Down
22 changes: 16 additions & 6 deletions IpViewer.BusinessObject/IpViewerSettings.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
using System;
using System.Collections.Generic;
// Copyright(C) 2020 Justin LECheminant


// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.If not, see<https://www.gnu.org/licenses/>.

using System.Configuration;
using System.Linq;
using System.Security.Permissions;
using System.Text;
using System.Threading.Tasks;

namespace IpViewer.BusinessObject
{
Expand Down
20 changes: 15 additions & 5 deletions IpViewer.BusinessObject/PacketInformation.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// Copyright(C) 2020 Justin LECheminant


// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.If not, see<https://www.gnu.org/licenses/>.

namespace IpViewer.BusinessObject
{
Expand Down

0 comments on commit a1c769d

Please sign in to comment.