Created
June 23, 2015 05:50
-
-
Save relax-more/48a6c85e7eb7896ab59e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>com.google.code.findbugs</groupId> | |
<artifactId>jsr305</artifactId> | |
<version>3.0.0</version> | |
</dependency> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// if added @Nullable, the param can use null, if not, the param can not use null that means same as @Notnull | |
List<Data> getDataList(@Nullable Query query, Long limit, Long offset); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment