Skip to content

Commit a07ba69

Browse files
committed
1 parent e8ef365 commit a07ba69

File tree

1 file changed

+3
-1
lines changed
  • spring-core/src/main/java/org/springframework/core/annotation

1 file changed

+3
-1
lines changed

spring-core/src/main/java/org/springframework/core/annotation/Order.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2014 the original author or authors.
2+
* Copyright 2002-2015 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,6 +16,7 @@
1616

1717
package org.springframework.core.annotation;
1818

19+
import java.lang.annotation.Documented;
1920
import java.lang.annotation.ElementType;
2021
import java.lang.annotation.Retention;
2122
import java.lang.annotation.RetentionPolicy;
@@ -47,6 +48,7 @@
4748
*/
4849
@Retention(RetentionPolicy.RUNTIME)
4950
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
51+
@Documented
5052
public @interface Order {
5153

5254
/**

0 commit comments

Comments
 (0)