Sho SHIMIZU
Committed by Gerrit Code Review

Improve null safety by returning an empty list

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