Improve null safety by returning an empty list

Change-Id: I88e673b1ed0b9edfe86c9b1b4004ad9b95271d29
This commit is contained in:
Sho SHIMIZU 2016-01-15 16:45:57 -08:00 committed by Gerrit Code Review
parent 9aee1f56ac
commit 9fa6b8b23c

View File

@ -166,7 +166,7 @@ public class GossipIntentStore
if (data != null) {
return data.installables();
}
return null;
return ImmutableList.of();
}