Skip to content

Commit

Permalink
casing
Browse files Browse the repository at this point in the history
  • Loading branch information
twcclegg committed Jul 7, 2022
1 parent 76185de commit 7d033d1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers.Test/PhoneNumbers.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="..\..\resources\PhoneNumberMetaDataForTesting.xml" />
<EmbeddedResource Include="..\..\resources\PhoneNumberMetadataForTesting.xml" />
<EmbeddedResource Include="..\..\resources\test\geocoding\**" LinkBase="geocoding" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers.Test/TestMetadataTestCase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ namespace PhoneNumbers.Test
*/
public class TestMetadataTestCase
{
public static readonly PhoneNumberUtil PhoneUtil = new PhoneNumberUtil("PhoneNumberMetaDataForTesting.xml", typeof(TestMetadataTestCase).Assembly);
public static readonly PhoneNumberUtil PhoneUtil = new PhoneNumberUtil("PhoneNumberMetadataForTesting.xml", typeof(TestMetadataTestCase).Assembly);
}
}
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers/MetadataManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace PhoneNumbers
/**
* Class encapsulating loading of PhoneNumber Metadata information. Currently this is used only for
* additional data files such as PhoneNumberAlternateFormats, but in the future it is envisaged it
* would handle the main metadata file (PhoneNumberMetaData.xml) as well.
* would handle the main metadata file (PhoneNumberMetadata.xml) as well.
*
* @author Lara Rennie
*/
Expand Down
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers/PhoneNumberUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class PhoneNumberUtil
// We don't allow input strings for parsing to be longer than 250 chars. This prevents malicious
// input from overflowing the regular-expression engine.
private const int MAX_INPUT_STRING_LENGTH = 250;
internal const string META_DATA_FILE_PREFIX = "PhoneNumberMetaData.xml";
internal const string META_DATA_FILE_PREFIX = "PhoneNumberMetadata.xml";
internal const string UNKNOWN_REGION = "ZZ";

// A mapping from a country calling code to the region codes which denote the region represented
Expand Down
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers/PhoneNumbers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</PropertyGroup>

<ItemGroup>
<EmbeddedResource Include="..\..\resources\*.xml" Exclude="..\..\resources\PhoneNumberMetaDataForTesting.xml" />
<EmbeddedResource Include="..\..\resources\*.xml" Exclude="..\..\resources\PhoneNumberMetadataForTesting.xml" />
<EmbeddedResource Include="..\..\resources\geocoding\**" LinkBase="geocoding" />
</ItemGroup>

Expand Down

0 comments on commit 7d033d1

Please sign in to comment.