Fixing a typo

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@818754 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2009-09-25 07:27:44 +00:00
parent 415355687d
commit ac1c6a6953
1 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ import org.apache.lucene.util.FieldCacheSanityChecker.Insanity;
/**
* A SolrInfoMBean that provides introspection of the Lucene FiledCache, this is <b>NOT</b> a cache that is manged by Solr.
*
* @version $Id:$
* @version $Id$
*/
public class SolrFieldCacheMBean implements SolrInfoMBean {
@ -47,10 +47,10 @@ public class SolrFieldCacheMBean implements SolrInfoMBean {
}
public Category getCategory() { return Category.CACHE; }
public String getSourceId() {
return "$Id:$";
return "$Id$";
}
public String getSource() {
return "$URL:$";
return "$URL$";
}
public URL[] getDocs() {
return null;
@ -67,7 +67,7 @@ public class SolrFieldCacheMBean implements SolrInfoMBean {
Insanity[] insanity = checker.checkSanity(entries);
stats.add("instanity_count", insanity.length);
stats.add("insanity_count", insanity.length);
for (int i = 0; i < insanity.length; i++) {
stats.add("insanity#" + i, insanity[i].toString());
}