Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public abstract class AbstractSkillSource<PathT> implements SkillSource {
private static final ObjectMapper yamlMapper = new ObjectMapper(new YAMLFactory());

/** A container class that holds a skill's name and the path to its SKILL.md file. */
protected final class SkillMdPath {
public final class SkillMdPath {

private final String name;
private final PathT mdPath;
Expand All @@ -55,8 +55,7 @@ protected final class SkillMdPath {
* @param name the name of the skill
* @param mdPath the path to the SKILL.md file
*/
@SuppressWarnings("ProtectedMembersInFinalClass")
protected SkillMdPath(String name, PathT mdPath) {
public SkillMdPath(String name, PathT mdPath) {
this.name = name;
this.mdPath = mdPath;
}
Expand Down
Loading