Skip to content

Commit 5979905

Browse files
committed
Remove comments and using statements
1 parent 9cf309b commit 5979905

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Rubberduck.Core/UI/About/AboutControl.xaml.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using System.Windows;
22
using System.Windows.Input;
3-
using System;
4-
using System.IO;
5-
using Application = System.Windows.Forms.Application;
63

74
namespace Rubberduck.UI.About
85
{
@@ -33,11 +30,6 @@ private void CopyVersionInfo_MouseLeftButtonDown(object sender, MouseButtonEvent
3330
private void CopyVersionInfoToClipboard()
3431
{
3532
var sb = new System.Text.StringBuilder();
36-
//sb.AppendLine($"Rubberduck version: {Version.Text}");
37-
//sb.AppendLine($"Operating System: {Environment.OSVersion.VersionString}, {(Environment.Is64BitOperatingSystem ? "x64" : "x86")}");
38-
//sb.AppendLine($"Host Product: {Application.ProductName} {(Environment.Is64BitProcess ? "x64" : "x86")}");
39-
//sb.AppendLine($"Host Version: {Application.ProductVersion}");
40-
//sb.AppendFormat($"Host Executable: {Path.GetFileName(Application.ExecutablePath).ToUpper()}");
4133
sb.AppendLine(Version.Text);
4234
sb.AppendLine(OperatingSystem.Text);
4335
sb.AppendLine(HostProduct.Text);

0 commit comments

Comments
 (0)