Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers/MetadataFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace PhoneNumbers
/// changes without notice. Any changes are not guaranteed to be reflected in the versioning scheme
/// of the public API, nor in release notes.
/// </summary>
public class MetadataFilter
public sealed class MetadataFilter
{
// The following 3 sets comprise all the PhoneMetadata fields as defined at phonemetadata.proto
// which may be excluded from customized serializations of the binary metadata. Fields that are
Expand Down
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers/PhoneNumberOfflineGeocoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private static string GetCountryName(string country, string language)
/// files generated at build time by <c>PhoneNumbers.MetadataBuilder</c>, via
/// <see cref="PrefixFileReader"/>.
/// </remarks>
public class PhoneNumberOfflineGeocoder
public sealed class PhoneNumberOfflineGeocoder
{
private static PhoneNumberOfflineGeocoder instance;
private const string MAPPING_DATA_DIRECTORY = "geocoding.";
Expand Down
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers/PhoneNumberToCarrierMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace PhoneNumbers
/// number portability the number might not belong to the returned carrier anymore.
/// </para>
/// </summary>
public class PhoneNumberToCarrierMapper
public sealed class PhoneNumberToCarrierMapper
{
// Corresponds to resources/carrier/ embedded with LinkBase="carrier".
private const string MAPPING_DATA_DIRECTORY = "carrier.";
Expand Down
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers/PhoneNumberToTimeZonesMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace PhoneNumbers
{
public class PhoneNumberToTimeZonesMapper
public sealed class PhoneNumberToTimeZonesMapper
{
private static readonly string[] UNKNOWN_TIMEZONE = { "Etc/Unknown" };

Expand Down
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers/PhoneNumberUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace PhoneNumbers
/// @author Lara Rennie
/// -->
/// </summary>
public partial class PhoneNumberUtil
public sealed partial class PhoneNumberUtil
{
// The minimum and maximum length of the national significant number.
private const int MIN_LENGTH_FOR_NSN = 2;
Expand Down
2 changes: 1 addition & 1 deletion csharp/PhoneNumbers/ShortNumberInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace PhoneNumbers
/// @author Shaopeng Jia
/// @author David Yonge-Mallo
/// </summary>
public class ShortNumberInfo
public sealed class ShortNumberInfo
{
private static readonly ShortNumberInfo Instance = new();

Expand Down
Loading