From 44f169fb92db32e032b86071daf0c8b1e166b7f3 Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Fri, 29 May 2026 10:26:41 -0700 Subject: [PATCH] fix:SkillMdPath should be public PiperOrigin-RevId: 923483774 --- .../main/java/com/google/adk/skills/AbstractSkillSource.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; }