From 136763e1eb113d95a2891b75720e0d156c44c291 Mon Sep 17 00:00:00 2001 From: Matthew Ahrenstein Date: Fri, 13 Mar 2015 23:08:01 -0400 Subject: [PATCH] Removed incorrect comments from end of files Some incorrect namespace comments made their way into the project due to copying a few reusable files over --- .../Properties/AssemblyVersion.cs | 4 +- Windows Duplicate File Finder/frmAbout.cs | 58 +++++++++---------- 2 files changed, 31 insertions(+), 31 deletions(-) mode change 100644 => 100755 Windows Duplicate File Finder/Properties/AssemblyVersion.cs mode change 100644 => 100755 Windows Duplicate File Finder/frmAbout.cs diff --git a/Windows Duplicate File Finder/Properties/AssemblyVersion.cs b/Windows Duplicate File Finder/Properties/AssemblyVersion.cs old mode 100644 new mode 100755 index 32228fa..b89de82 --- a/Windows Duplicate File Finder/Properties/AssemblyVersion.cs +++ b/Windows Duplicate File Finder/Properties/AssemblyVersion.cs @@ -50,5 +50,5 @@ static AssemblyVersion() _VERSION_STRING = AssemblyVersion._NAME + " " + AssemblyVersion._DEBUG + " " + AssemblyVersion._VERSION + " build " + AssemblyVersion._BUILD; } - } // public class AssemblyVersion -} // namespace SecurePassword.GeneratorLite + } +} diff --git a/Windows Duplicate File Finder/frmAbout.cs b/Windows Duplicate File Finder/frmAbout.cs old mode 100644 new mode 100755 index 0dc102d..adea454 --- a/Windows Duplicate File Finder/frmAbout.cs +++ b/Windows Duplicate File Finder/frmAbout.cs @@ -24,17 +24,17 @@ namespace WindowsDuplicateFileFinder { /// /// Implements the logic code for the about box. - /// - public partial class frmAbout : Form - { + /// + public partial class frmAbout : Form + { /** * Methods - */ - /// - /// Initializes a new instance of the class. - /// - public frmAbout() - { + */ + /// + /// Initializes a new instance of the class. + /// + public frmAbout() + { string[] projectDescription = new string[] { "Windows Duplicate File Finder.", @@ -49,23 +49,23 @@ public frmAbout() "", "Nevec Networks LLC:", "\t- Assembly Attribute Accessors (Used to grab build/version info automatically)", - }; - - InitializeComponent(); - this.lblProjectName.Text = AssemblyVersion._NAME; - this.lblVersion.Text = "Version: " + AssemblyVersion._VERSION_STRING; - this.lblCopyright.Text = AssemblyVersion._COPYRIGHT; - this.txtDescription.Lines = projectDescription; - } - - /// - /// Event that occurs when the "Close" button is clicked. - /// - /// - /// - private void btnClose_Click(object sender, EventArgs e) - { - Close(); - } - } // public partial class frmAbout : Form -} // namespace SecurePassword.GeneratorLite + }; + + InitializeComponent(); + this.lblProjectName.Text = AssemblyVersion._NAME; + this.lblVersion.Text = "Version: " + AssemblyVersion._VERSION_STRING; + this.lblCopyright.Text = AssemblyVersion._COPYRIGHT; + this.txtDescription.Lines = projectDescription; + } + + /// + /// Event that occurs when the "Close" button is clicked. + /// + /// + /// + private void btnClose_Click(object sender, EventArgs e) + { + Close(); + } + } +}