Skip to content

Commit

Permalink
cleaning up code and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasxc committed Mar 8, 2017
1 parent a8114ab commit 927ab06
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
4 changes: 0 additions & 4 deletions Alexa.NET/Request/Type/BuiltInIntents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@

namespace Alexa.NET.Request.Type
{
/// <summary>
/// Standard Built-In Intents detailed here:
/// https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents
/// </summary>

public class BuiltInIntent
{
Expand Down
3 changes: 0 additions & 3 deletions Alexa.NET/Request/Type/RequestConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ public override object ReadJson(JsonReader reader, System.Type objectType, objec

public Request Create(string requestType)
{
//Note: could add a System.ExceptionEncountered request type
// Also might be valuable to add built-in requests (which start with "AMAZON.")

//AudioPlayer requests are very similar, map to single type
if (requestType.StartsWith("AudioPlayer"))
requestType = "AudioPlayer";
Expand Down
2 changes: 1 addition & 1 deletion Alexa.NET/Response/Directive/ClearBehavior.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ public enum ClearBehavior
[EnumMember(Value = "CLEAR_ENQUEUED")]
ClearEnqueued,
[EnumMember(Value = "CLEAR_ALL")]
ClearAll,
ClearAll
}
}

0 comments on commit 927ab06

Please sign in to comment.