move constant to class

master
yihua.huang 2017-06-03 20:33:28 +08:00
parent df682857a7
commit b363ee6a9d
1 changed files with 1 additions and 1 deletions

View File

@ -38,6 +38,6 @@ public @interface Formatter {
* If there are more than one formatter for a class, just specify the implement. * If there are more than one formatter for a class, just specify the implement.
* @return implement * @return implement
*/ */
Class<? extends ObjectFormatter> formatter() default DEFAULT_FORMATTER; Class<? extends ObjectFormatter> formatter() default ObjectFormatter.class;
} }