Skip to content
Closed
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
4 changes: 2 additions & 2 deletions src/main/java/org/apache/ibatis/io/DefaultVFS.java
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public List<String> list(URL url, String path) throws IOException {
prefix = prefix + "/";
}

// Iterate over immediate children, adding files and recursing into directories
// Iterate over immediate children, adding files and recurring into directories
for (String child : children) {
String resourcePath = path + "/" + child;
resources.add(resourcePath);
Expand Down Expand Up @@ -271,7 +271,7 @@ protected URL findJarForResource(URL url) throws MalformedURLException {
try {
file = new File(URLEncoder.encode(jarUrl.toString(), "UTF-8"));
} catch (UnsupportedEncodingException e) {
throw new RuntimeException("Unsupported encoding? UTF-8? That's unpossible.");
throw new RuntimeException("Unsupported encoding? UTF-8? That's impossible.");
}
}

Expand Down