SOLR-714 -- CoreContainer.Load uses incorrect loop variable 'i' instead of 'a'

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@688332 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2008-08-23 14:40:20 +00:00
parent 41443d51b7
commit b355f57d80
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ public class CoreContainer
for (int a=1; a<aliases.size(); a++) {
core.open();
register(aliases.get(i), core, false);
register(aliases.get(a), core, false);
}
register(name, core, false);