aboutsummaryrefslogtreecommitdiff
path: root/src/ProtoGen/Generator.cs
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-05-20 12:07:49 -0500
committerrogerk <devnull@localhost>2011-05-20 12:07:49 -0500
commit51eb1b405c852d1efc1dd3ca2d7e29fc0a8b67be (patch)
tree564ca90c278eb2a8370a717fbac0c3b8bbc6dbfd /src/ProtoGen/Generator.cs
parent5a80c378421d3a3cd4f19efcbafd9eaae089c3e9 (diff)
downloadprotobuf-51eb1b405c852d1efc1dd3ca2d7e29fc0a8b67be.tar.gz
protobuf-51eb1b405c852d1efc1dd3ca2d7e29fc0a8b67be.tar.bz2
protobuf-51eb1b405c852d1efc1dd3ca2d7e29fc0a8b67be.zip
Removed some uses of InternalsVisibleTo, made some stuff public
Diffstat (limited to 'src/ProtoGen/Generator.cs')
-rw-r--r--src/ProtoGen/Generator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ProtoGen/Generator.cs b/src/ProtoGen/Generator.cs
index 8b5c2cfb..13797487 100644
--- a/src/ProtoGen/Generator.cs
+++ b/src/ProtoGen/Generator.cs
@@ -124,7 +124,7 @@ namespace Google.ProtocolBuffers.ProtoGen {
/// Note: this method is internal rather than private to allow testing.
/// </summary>
/// <exception cref="DependencyResolutionException">Not all dependencies could be resolved.</exception>
- internal static IList<FileDescriptor> ConvertDescriptors(CSharpFileOptions options, params FileDescriptorSet[] descriptorProtos) {
+ public static IList<FileDescriptor> ConvertDescriptors(CSharpFileOptions options, params FileDescriptorSet[] descriptorProtos) {
// Simple strategy: Keep going through the list of protos to convert, only doing ones where
// we've already converted all the dependencies, until we get to a stalemate
List<FileDescriptorProto> fileList = new List<FileDescriptorProto>();