aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/Descriptors/PackageDescriptor.cs
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2008-08-14 20:35:32 +0100
committerJon Skeet <skeet@pobox.com>2008-08-14 20:35:32 +0100
commit48ce28bf2fed8edde98f14c79807b4f4411cca6c (patch)
treeeb68459cdde93fa1be14517650e7c0d0bba3a6c3 /csharp/ProtocolBuffers/Descriptors/PackageDescriptor.cs
parent5923b37223a013139ff0b01558eb37a206c33fd1 (diff)
downloadprotobuf-48ce28bf2fed8edde98f14c79807b4f4411cca6c.tar.gz
protobuf-48ce28bf2fed8edde98f14c79807b4f4411cca6c.tar.bz2
protobuf-48ce28bf2fed8edde98f14c79807b4f4411cca6c.zip
Copyright fixes, a bit of documentation, and removed unnecessary using directives.
Diffstat (limited to 'csharp/ProtocolBuffers/Descriptors/PackageDescriptor.cs')
-rw-r--r--csharp/ProtocolBuffers/Descriptors/PackageDescriptor.cs17
1 files changed, 6 insertions, 11 deletions
diff --git a/csharp/ProtocolBuffers/Descriptors/PackageDescriptor.cs b/csharp/ProtocolBuffers/Descriptors/PackageDescriptor.cs
index acef6200..9884c4a6 100644
--- a/csharp/ProtocolBuffers/Descriptors/PackageDescriptor.cs
+++ b/csharp/ProtocolBuffers/Descriptors/PackageDescriptor.cs
@@ -3,17 +3,12 @@ using System.Collections.Generic;
using System.Text;
namespace Google.ProtocolBuffers.Descriptors {
- /*
- * Represents a package in the symbol table. We use PackageDescriptors
- * just as placeholders so that someone cannot define, say, a message type
- * that has the same name as an existing package.
- */
- /// <summary>
- /// Represents a package in the symbol table. We use PackageDescriptors
- /// just as placeholders so that someone cannot define, say, a message type
- /// that has the same name as an existing package.
- /// </summary>
- internal class PackageDescriptor : IDescriptor<IMessage> {
+ /// <summary>
+ /// Represents a package in the symbol table. We use PackageDescriptors
+ /// just as placeholders so that someone cannot define, say, a message type
+ /// that has the same name as an existing package.
+ /// </summary>
+ internal sealed class PackageDescriptor : IDescriptor<IMessage> {
private readonly string name;
private readonly string fullName;