Skip to content

Commit 1e96f7f

Browse files
mars05sothawo
authored andcommitted
DATAES-638 - Remove redundant public modifiers in @MultiField.
Original PR: spring-projects#303
1 parent 7725689 commit 1e96f7f

File tree

1 file changed

+3
-2
lines changed
  • src/main/java/org/springframework/data/elasticsearch/annotations

1 file changed

+3
-2
lines changed

src/main/java/org/springframework/data/elasticsearch/annotations/MultiField.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@
2222
* @author Mohsin Husen
2323
* @author Artur Konczak
2424
* @author Jonathan Yan
25+
* @author Xiao Yu
2526
*/
2627
@Retention(RetentionPolicy.RUNTIME)
2728
@Target(ElementType.FIELD)
2829
@Documented
2930
public @interface MultiField {
3031

31-
public Field mainField();
32+
Field mainField();
3233

33-
public InnerField[] otherFields() default {};
34+
InnerField[] otherFields() default {};
3435
}

0 commit comments

Comments
 (0)