Skip to content

Commit

Permalink
Fix local loader to reflect slot
Browse files Browse the repository at this point in the history
  • Loading branch information
n1hility committed Sep 8, 2010
1 parent 7f9a748 commit df880a6
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/jboss/modules/LocalModuleLoader.java
Expand Up @@ -58,6 +58,7 @@ private File getModuleRoot(final ModuleIdentifier moduleIdentifier) {
private static String toPathString(ModuleIdentifier moduleIdentifier) {
final StringBuilder builder = new StringBuilder();
builder.append(moduleIdentifier.getName().replace('.', File.separatorChar));
builder.append(File.separatorChar).append(moduleIdentifier.getSlot());
builder.append(File.separatorChar);
return builder.toString();
}
Expand Down

0 comments on commit df880a6

Please sign in to comment.