LUCENE-2393: use class.getName()

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1039967 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Koji Sekiguchi 2010-11-28 22:40:47 +00:00
parent 522a98f6a0
commit 115ef9b8dc
1 changed files with 1 additions and 1 deletions

View File

@ -59,6 +59,6 @@ public class GetTermInfo {
private static void usage() {
System.out
.println("\n\nusage:\n\t"
+ "java org.apache.lucene.misc.GetTermInfo <index dir> field term \n\n");
+ "java " + GetTermInfo.class.getName() + " <index dir> field term \n\n");
}
}