Skip to content

Commit

Permalink
Add overloaded constructor for SkillConfiguration to fix reflection bug
Browse files Browse the repository at this point in the history
  • Loading branch information
breedloj authored Oct 31, 2018
1 parent c7bdd89 commit 14db316
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ask-sdk-core/src/com/amazon/ask/Skill.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
package com.amazon.ask;

import com.amazon.ask.builder.CustomSkillConfiguration;
import com.amazon.ask.builder.SkillConfiguration;

/**
* Top level SDK entry point.
Expand All @@ -23,5 +24,9 @@ public class Skill extends CustomSkill {
public Skill(CustomSkillConfiguration config) {
super(config);
}

public Skill(SkillConfiguration config) {
super(config);
}

}

0 comments on commit 14db316

Please sign in to comment.