Polishing

This commit is contained in:
Sam Brannen
2019-03-09 16:53:09 +01:00
parent 8ddb1e7201
commit b09e6c8aaf
3 changed files with 10 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2018 the original author or authors. * Copyright 2002-2019 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -26,8 +26,9 @@ import javax.annotation.meta.TypeQualifierNickname;
/** /**
* A common Spring annotation to declare that annotated elements cannot be {@code null}. * A common Spring annotation to declare that annotated elements cannot be {@code null}.
* Leverages JSR 305 meta-annotations to indicate nullability in Java to common tools with *
* JSR 305 support and used by Kotlin to infer nullability of Spring API. * <p>Leverages JSR-305 meta-annotations to indicate nullability in Java to common
* tools with JSR-305 support and used by Kotlin to infer nullability of Spring API.
* *
* <p>Should be used at parameter, return value, and field level. Method overrides should * <p>Should be used at parameter, return value, and field level. Method overrides should
* repeat parent {@code @NonNull} annotations unless they behave differently. * repeat parent {@code @NonNull} annotations unless they behave differently.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2017 the original author or authors. * Copyright 2002-2019 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2018 the original author or authors. * Copyright 2002-2019 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -27,8 +27,10 @@ import javax.annotation.meta.When;
/** /**
* A common Spring annotation to declare that annotated elements can be {@code null} under * A common Spring annotation to declare that annotated elements can be {@code null} under
* some circumstance. Leverages JSR 305 meta-annotations to indicate nullability in Java * some circumstance.
* to common tools with JSR 305 support and used by Kotlin to infer nullability of Spring API. *
* <p>Leverages JSR-305 meta-annotations to indicate nullability in Java to common
* tools with JSR-305 support and used by Kotlin to infer nullability of Spring API.
* *
* <p>Should be used at parameter, return value, and field level. Methods override should * <p>Should be used at parameter, return value, and field level. Methods override should
* repeat parent {@code @Nullable} annotations unless they behave differently. * repeat parent {@code @Nullable} annotations unless they behave differently.