Skip to content
This repository has been archived by the owner on May 2, 2020. It is now read-only.

Commit

Permalink
Removed incorrect comments from end of files
Browse files Browse the repository at this point in the history
Some incorrect namespace comments made their way into the project due
to copying a few reusable files over
  • Loading branch information
ahrenstein committed Mar 14, 2015
1 parent 4fc7f9c commit 136763e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
4 changes: 2 additions & 2 deletions Windows Duplicate File Finder/Properties/AssemblyVersion.cs
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ static AssemblyVersion()

_VERSION_STRING = AssemblyVersion._NAME + " " + AssemblyVersion._DEBUG + " " + AssemblyVersion._VERSION + " build " + AssemblyVersion._BUILD;
}
} // public class AssemblyVersion
} // namespace SecurePassword.GeneratorLite
}
}
58 changes: 29 additions & 29 deletions Windows Duplicate File Finder/frmAbout.cs
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ namespace WindowsDuplicateFileFinder
{
/// <summary>
/// Implements the logic code for the about box.
/// </summary>
public partial class frmAbout : Form
{
/// </summary>
public partial class frmAbout : Form
{
/**
* Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="frmAbout"/> class.
/// </summary>
public frmAbout()
{
*/
/// <summary>
/// Initializes a new instance of the <see cref="frmAbout"/> class.
/// </summary>
public frmAbout()
{
string[] projectDescription = new string[]
{
"Windows Duplicate File Finder.",
Expand All @@ -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;
}

/// <summary>
/// Event that occurs when the "Close" button is clicked.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
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;
}

/// <summary>
/// Event that occurs when the "Close" button is clicked.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnClose_Click(object sender, EventArgs e)
{
Close();
}
}
}

0 comments on commit 136763e

Please sign in to comment.