Skip to content

Commit

Permalink
Added the args in the call to the resolved store in resolveURI is mis…
Browse files Browse the repository at this point in the history
…sing as mentioned by @Enet4
  • Loading branch information
bastiao committed Dec 4, 2015
1 parent 1ff03cc commit 0f37f2d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,11 +334,10 @@ public Iterable<StorageInputStream> resolveURI(URI location, Object ...args)
Collection<StorageInterface> storages = getStoragePlugins(true);

for (StorageInterface store : storages) {

if (store.handles(location))
{
logger.info("Resolving URI: "+location.toString()+" Storage: "+store.getName() );
return store.at(location);
return store.at(location, args);
}
}

Expand Down

0 comments on commit 0f37f2d

Please sign in to comment.