Added another nullability annotation

This commit is contained in:
Florian CUNY 2019-08-28 14:21:31 +02:00
parent edb6d11fc2
commit e8ea537160

View File

@ -390,7 +390,7 @@ public class IslandsManager {
* Used for testing only to inject the islandCache mock object
* @param islandCache - island cache
*/
public void setIslandCache(IslandCache islandCache) {
public void setIslandCache(@NonNull IslandCache islandCache) {
this.islandCache = islandCache;
}