aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-09-19 18:30:53 -0500
committerToby Vincent <tobyv13@gmail.com>2021-09-19 18:30:53 -0500
commitfcbd2a28aad728d4c722b0c24fcdc9db6b8a7a40 (patch)
treeb930c0b56e96e14485ba5ee070d3229df89aa7d5
parent0fa7a5448cebcafac4d44b85766b797c740b8b42 (diff)
cleaned up usings and launch.jsonHEADmain
-rw-r--r--.vscode/launch.json12
-rw-r--r--src/Huffman/HuffmanCoding.cs1
-rw-r--r--src/Huffman/HuffmanNode.cs1
-rw-r--r--src/Huffman/HuffmanTree.cs9
-rw-r--r--src/HuffmanCodes/Program.cs11
5 files changed, 2 insertions, 32 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 965b44d..d9f7f30 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -3,25 +3,15 @@
"configurations": [
{
- // Use IntelliSense to find out which attributes exist for C# debugging
- // Use hover for the description of the existing attributes
- // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
- "name": ".NET Core Launch (console)",
+ "name": "Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
- // If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/HuffmanCodes/bin/Debug/net5.0/HuffmanCodes.dll",
"args": ["LittleWomen.txt", "Alice.txt"],
"cwd": "${workspaceFolder}/src/HuffmanCodes",
- // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "integratedTerminal",
"stopAtEntry": false
- },
- {
- "name": ".NET Core Attach",
- "type": "coreclr",
- "request": "attach"
}
]
} \ No newline at end of file
diff --git a/src/Huffman/HuffmanCoding.cs b/src/Huffman/HuffmanCoding.cs
index a38aab4..03ff0e4 100644
--- a/src/Huffman/HuffmanCoding.cs
+++ b/src/Huffman/HuffmanCoding.cs
@@ -1,4 +1,3 @@
-
using System;
using System.Collections;
using System.IO;
diff --git a/src/Huffman/HuffmanNode.cs b/src/Huffman/HuffmanNode.cs
index 779c8f3..d163bfc 100644
--- a/src/Huffman/HuffmanNode.cs
+++ b/src/Huffman/HuffmanNode.cs
@@ -1,6 +1,5 @@
using System;
using System.Collections;
-using System.Collections.Generic;
using PriorityQueue;
diff --git a/src/Huffman/HuffmanTree.cs b/src/Huffman/HuffmanTree.cs
index 128461e..22f3a68 100644
--- a/src/Huffman/HuffmanTree.cs
+++ b/src/Huffman/HuffmanTree.cs
@@ -1,12 +1,3 @@
-/* filename: Huffman.cs
- * Class: CS 456-001
- * Professor: Dr. John Matta
- * Due Date: Sept. 20th, 2021
- * Name:
- * Partner:
- */
-//TODO: ADD NAMES
-
using System.Collections;
using System.Collections.Generic;
using System.Linq;
diff --git a/src/HuffmanCodes/Program.cs b/src/HuffmanCodes/Program.cs
index 9a2f329..2158bc4 100644
--- a/src/HuffmanCodes/Program.cs
+++ b/src/HuffmanCodes/Program.cs
@@ -1,13 +1,4 @@
-/* filename: Program.cs
- * Class: CS 456-001
- * Professor: Dr. John Matta
- * Due Date: Sept. 20th, 2021
- * Name:
- * Partner:
- */
-//TODO: ADD NAMES
-
-using System;
+using System;
using System.Diagnostics;
using System.IO;
using Huffman;