Commit 78411d655efe7f207112efb92398a62ced710aea
1 parent
0175139f
Removed unused variable
Showing
1 changed file
with
0 additions
and
2 deletions
350-UTILITIES/ModifyXml/ModifyXml/modifyAAXML.cs
... | ... | @@ -26,7 +26,6 @@ namespace ModifyXml |
26 | 26 | string[] filesList = new string[0]; |
27 | 27 | static int pass = 0; |
28 | 28 | static int fail = 0; |
29 | - int strlen = 0; | |
30 | 29 | string err = string.Empty; |
31 | 30 | |
32 | 31 | private void browsefolder_Click(object sender, EventArgs e) |
... | ... | @@ -49,7 +48,6 @@ namespace ModifyXml |
49 | 48 | } |
50 | 49 | |
51 | 50 | //Process all files |
52 | - | |
53 | 51 | string path = openFileDialog1.FileName.ToString().Substring(0, openFileDialog1.FileName.ToString().IndexOf('.')); |
54 | 52 | filesList = Directory.GetFiles(path, "*.*", SearchOption.TopDirectoryOnly).Where(s => s.EndsWith(".xml")).ToArray(); |
55 | 53 | filesCount = filesList.Length; | ... | ... |