DATAJPA-1192 - Use qualified import for @NonNullApi.

Switched to fully-qualified imports of Spring's @NonNullApi in package-info.java files that used explicit imports before.

Original pull request: #224.
This commit is contained in:
Kevin Peters
2017-10-01 14:58:50 +02:00
committed by Oliver Gierke
parent fde517574c
commit 99017b3f87
2 changed files with 2 additions and 6 deletions

View File

@@ -1,7 +1,5 @@
/**
* Interfaces and annotations for JPA specific repositories.
*/
@NonNullApi
@org.springframework.lang.NonNullApi
package org.springframework.data.jpa.repository;
import org.springframework.lang.NonNullApi;

View File

@@ -1,7 +1,5 @@
/**
* Query implementation to exectue queries against JPA.
*/
@NonNullApi
@org.springframework.lang.NonNullApi
package org.springframework.data.jpa.repository.query;
import org.springframework.lang.NonNullApi;