get rid of unnecessary ElementType

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@693116 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Koji Sekiguchi 2008-09-08 14:49:56 +00:00
parent b4271a2cfe
commit 9dc1014729
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ import java.util.concurrent.ConcurrentHashMap;
/**
* A class to map objects to and from solr documents.
*
* @version $Id: ClientUtils.java 601900 2007-12-06 22:55:47Z ryan $
* @version $Id$
* @since solr 1.3
*/
public class DocumentObjectBinder {

View File

@ -24,10 +24,10 @@ import java.lang.annotation.Retention;
/**
* @version $Id: ClientUtils.java 601900 2007-12-06 22:55:47Z ryan $
* @version $Id$
* @since solr 1.3
*/
@Target({FIELD, METHOD, TYPE})
@Target({FIELD, METHOD})
@Retention(RUNTIME)
public @interface Field {
public static final String DEFAULT ="#default";