1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

Merge pull request #1169 from xiaod-dev/patch-1

fix multiple annotations NPE
This commit is contained in:
Guide哥 2021-04-19 20:48:01 +08:00 committed by GitHub
commit 378e94cb79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -872,6 +872,7 @@ System.out.println(string); // Nov 03, 2014 - 07:13
首先定义一个包装类Hints注解用来放置一组具体的Hint注解
```java
@Retention(RetentionPolicy.RUNTIME)
@interface Hints {
Hint[] value();
}