Skip to content

Commit

Permalink
fix for making the setter private
Browse files Browse the repository at this point in the history
fix for making the setter private
  • Loading branch information
Naveen committed Sep 22, 2015
1 parent 07f15ba commit 807188a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Octokit/Models/Response/RepositoryContent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public RepositoryContent(string name, string path, string sha, int size, Content
/// The Base64 encoded content if this is a file. Otherwise it's null.
/// </summary>
[Parameter(Key = "content")]
public string EncodedContent { get; set; }
public string EncodedContent { get; private set; }

/// <summary>
/// The unencoded content. Only access this if the content is expected to be text and not binary content.
Expand Down

0 comments on commit 807188a

Please sign in to comment.