Skip to content

Commit

Permalink
Keep tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
sailro committed Oct 28, 2013
1 parent 5716756 commit 45fa4f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CompanyStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public CompanyStore(StoreCredential credential)
_credential = credential;
}

public T ParseResponse<T>(WebResponse response)
private static T ParseResponse<T>(WebResponse response)
{
if (response == null)
throw new InvalidOperationException("No response.");
Expand Down
2 changes: 1 addition & 1 deletion Coupon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace SyntaxTree.FastSpring.Api
{
[XmlRoot(ElementName = "couponCode", IsNullable = false, Namespace = "")]
[XmlRoot(ElementName = "couponCode", IsNullable = false, Namespace = "")]
public sealed class Coupon
{
[XmlElement("code")]
Expand Down

0 comments on commit 45fa4f8

Please sign in to comment.