Skip to content

Commit

Permalink
fix keyword and synonym counts (#1165)
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Pham committed Jul 13, 2021
1 parent 05815ed commit f666c0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private static class SYNONYM
#else
internal const int SynonymCount = 25;
#endif
internal const int DeprecatedSynonymCount = 3;
internal const int DeprecatedSynonymCount = 2;

internal enum TypeSystem
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private enum Keywords
}

internal const int KeywordsCount = (int)Keywords.KeywordsCount;
internal const int DeprecatedKeywordsCount = 4;
internal const int DeprecatedKeywordsCount = 3;

private static readonly string[] s_validKeywords = CreateValidKeywords();
private static readonly Dictionary<string, Keywords> s_keywords = CreateKeywordsDictionary();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ private static class SYNONYM
internal const string APPLICATIONINTENT = "applicationintent";
// application name
internal const string APP = "app";
internal const string Async = "async";
// attachDBFilename
internal const string EXTENDED_PROPERTIES = "extended properties";
internal const string INITIAL_FILE_NAME = "initial file name";
Expand Down Expand Up @@ -175,7 +174,7 @@ private static class SYNONYM
// make sure to update SynonymCount value below when adding or removing synonyms
}

internal const int SynonymCount = 30;
internal const int SynonymCount = 29;

// the following are all inserted as keys into the _netlibMapping hash
internal static class NETLIB
Expand Down

0 comments on commit f666c0e

Please sign in to comment.