Skip to content

Commit

Permalink
Changed dictionary names to reflect their usage more accurately.
Browse files Browse the repository at this point in the history
  • Loading branch information
BobDoleOwndU committed Sep 29, 2021
1 parent cb01859 commit 12928b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions FvTwool/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.1.0")]
[assembly: AssemblyFileVersion("1.2.1.0")]
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]
16 changes: 8 additions & 8 deletions FvTwool/Static/Hashing.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,14 @@ static Hashing()
{
string path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

if (File.Exists($"{path}\\qar_dictionary.txt"))
ReadQARDictionary($"{path}\\qar_dictionary.txt");
if (File.Exists($"{path}\\fmdl_dictionary.txt"))
ReadFmdlDictionary($"{path}\\fmdl_dictionary.txt");
if (File.Exists($"{path}\\cust_qar_dictionary.txt"))
ReadQARDictionary($"{path}\\cust_qar_dictionary.txt");
if (File.Exists($"{path}\\cust_fmdl_dictionary.txt"))
ReadFmdlDictionary($"{path}\\cust_fmdl_dictionary.txt");
if (File.Exists($"{path}\\fv2_path_dictionary.txt"))
ReadQARDictionary($"{path}\\fv2_path_dictionary.txt");
if (File.Exists($"{path}\\fv2_str_dictionary.txt"))
ReadFmdlDictionary($"{path}\\fv2_str_dictionary.txt");
if (File.Exists($"{path}\\cust_path_dictionary.txt"))
ReadQARDictionary($"{path}\\cust_path_dictionary.txt");
if (File.Exists($"{path}\\cust_str_dictionary.txt"))
ReadFmdlDictionary($"{path}\\cust_str_dictionary.txt");
} //constructor

public static ulong HashFileExtension(string fileExtension) //from private to public
Expand Down

0 comments on commit 12928b5

Please sign in to comment.