Committed by
Gerrit Code Review
Add ToDo comment
Change-Id: I4fc91ab84122629054c06a1dd4ec89b3cc0045b5
Showing
1 changed file
with
2 additions
and
0 deletions
... | @@ -44,6 +44,8 @@ public final class IntentOperations { | ... | @@ -44,6 +44,8 @@ public final class IntentOperations { |
44 | private IntentOperations(List<IntentOperation> operations, ApplicationId appId) { | 44 | private IntentOperations(List<IntentOperation> operations, ApplicationId appId) { |
45 | checkNotNull(operations); | 45 | checkNotNull(operations); |
46 | checkNotNull(appId); | 46 | checkNotNull(appId); |
47 | + // TODO: consider check whether operations are not empty because empty batch is meaningless | ||
48 | + // but it affects the existing code to add this checking | ||
47 | 49 | ||
48 | this.operations = operations; | 50 | this.operations = operations; |
49 | this.appId = appId; | 51 | this.appId = appId; | ... | ... |
-
Please register or login to post a comment