Add ToDo comment

Change-Id: I4fc91ab84122629054c06a1dd4ec89b3cc0045b5
diff --git a/core/api/src/main/java/org/onosproject/net/intent/IntentOperations.java b/core/api/src/main/java/org/onosproject/net/intent/IntentOperations.java
index a9b3d44..176ac85 100644
--- a/core/api/src/main/java/org/onosproject/net/intent/IntentOperations.java
+++ b/core/api/src/main/java/org/onosproject/net/intent/IntentOperations.java
@@ -44,6 +44,8 @@
     private IntentOperations(List<IntentOperation> operations, ApplicationId appId) {
         checkNotNull(operations);
         checkNotNull(appId);
+        // TODO: consider check whether operations are not empty because empty batch is meaningless
+        // but it affects the existing code to add this checking
 
         this.operations = operations;
         this.appId = appId;