diff --git a/core/src/main/java/com/google/adk/skills/AbstractSkillSource.java b/core/src/main/java/com/google/adk/skills/AbstractSkillSource.java index 31f17a18e..91425716a 100644 --- a/core/src/main/java/com/google/adk/skills/AbstractSkillSource.java +++ b/core/src/main/java/com/google/adk/skills/AbstractSkillSource.java @@ -44,7 +44,7 @@ public abstract class AbstractSkillSource 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; @@ -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; }