Skip to content

Commit d3a6850

Browse files
committed
format code
1 parent 5752932 commit d3a6850

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

agentscope-core/src/main/java/io/agentscope/core/skill/repository/ClasspathSkillRepository.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ protected ClasspathSkillRepository(String resourcePath, String source, ClassLoad
140140
this.isJar = true;
141141
this.fileSystem = FileSystems.newFileSystem(uri, Collections.emptyMap());
142142
String schemeSpecificUriPath = uri.getSchemeSpecificPart();
143-
String actualResourcePath = schemeSpecificUriPath.substring(schemeSpecificUriPath.lastIndexOf("!") + 1);
143+
String actualResourcePath =
144+
schemeSpecificUriPath.substring(schemeSpecificUriPath.lastIndexOf("!") + 1);
144145
logger.info("Actual resource path: {}", actualResourcePath);
145146
this.skillBasePath = fileSystem.getPath(actualResourcePath);
146147
} else {

0 commit comments

Comments
 (0)