We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
打包成jar时,获取的皮肤路径的目录名包含/,导致匹配错误
for (final Iterator<Path> it = walk.iterator(); it.hasNext(); ) { final Path file = it.next().getFileName(); final String fileName = file.toString(); //此处取的的fileName是含/的,如 Bruce,获取到的是Bruce/ ,而非Bruce if (fileName.startsWith(".") || fileName.endsWith(".md") || "skins".equals(fileName)) { continue; } ret.add(fileName); }
The text was updated successfully, but these errors were encountered:
d5867a8
88250
No branches or pull requests
打包成jar时,获取的皮肤路径的目录名包含/,导致匹配错误
The text was updated successfully, but these errors were encountered: