Skip to content

Commit f60e3e6

Browse files
cardilSuszyński Krzysztof
authored andcommitted
Performance tweaks and changes to preconditions to fix #3
1 parent f2049dd commit f60e3e6

File tree

5 files changed

+161
-253
lines changed

5 files changed

+161
-253
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package pl.wavesoftware.eid;
2+
3+
import javax.annotation.Nonnull;
4+
import javax.annotation.meta.TypeQualifierDefault;
5+
import java.lang.annotation.ElementType;
6+
import java.lang.annotation.Retention;
7+
import java.lang.annotation.RetentionPolicy;
8+
9+
/**
10+
* @author Krzysztof Suszyński <krzysztof.suszynski@wavesoftware.pl>
11+
* @since 2016-03-26
12+
*/
13+
@Nonnull
14+
@TypeQualifierDefault(ElementType.METHOD)
15+
@Retention(RetentionPolicy.RUNTIME)
16+
public @interface ReturnTypesAreNonnullByDefault {
17+
}

0 commit comments

Comments
 (0)