Skip to content

Commit 73e5593

Browse files
ClémentClément
authored andcommitted
Removing useless CWL from Dictionary project.
1 parent 8815769 commit 73e5593

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

source/code/projects/Dictionary/Dictionary/Dictionary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ public void Add(TKey keyP, TValue valueP)
188188
);
189189
else
190190
{
191-
table[index].Value = valueP;
192191
table[index].Key = keyP;
192+
table[index].Value = valueP;
193193
table[index].Status = StatusType.Active;
194194
}
195195
}

source/code/projects/Dictionary/Dictionary/Program.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ class Program
2121
{
2222
static void Main(string[] args)
2323
{
24-
Console.WriteLine(-4 % 5);
25-
2624
// Example of using the CDictionary class
2725
CDictionary<string, Address> notebook = new CDictionary<
2826
string,

0 commit comments

Comments
 (0)