Write TODO comments
Change-Id: Iba341f40412eece46ac52ca993f8e314fd7307dc
Showing
1 changed file
with
2 additions
and
0 deletions
| ... | @@ -52,6 +52,7 @@ public interface ResourceAdminService { | ... | @@ -52,6 +52,7 @@ public interface ResourceAdminService { |
| 52 | * @return true if unregistration is successfully done, false otherwise. Unregistration | 52 | * @return true if unregistration is successfully done, false otherwise. Unregistration |
| 53 | * succeeds when each resource is not registered or unallocated. | 53 | * succeeds when each resource is not registered or unallocated. |
| 54 | */ | 54 | */ |
| 55 | + // TODO: might need to change the first argument type to ResourceId | ||
| 55 | default boolean unregisterResources(Resource... resources) { | 56 | default boolean unregisterResources(Resource... resources) { |
| 56 | return unregisterResources(ImmutableList.copyOf(resources)); | 57 | return unregisterResources(ImmutableList.copyOf(resources)); |
| 57 | } | 58 | } |
| ... | @@ -63,5 +64,6 @@ public interface ResourceAdminService { | ... | @@ -63,5 +64,6 @@ public interface ResourceAdminService { |
| 63 | * @return true if unregistration is successfully done, false otherwise. Unregistration | 64 | * @return true if unregistration is successfully done, false otherwise. Unregistration |
| 64 | * succeeds when each resource is not registered or unallocated. | 65 | * succeeds when each resource is not registered or unallocated. |
| 65 | */ | 66 | */ |
| 67 | + // TODO: might need to change the first argument type to ResourceId | ||
| 66 | boolean unregisterResources(List<Resource> resources); | 68 | boolean unregisterResources(List<Resource> resources); |
| 67 | } | 69 | } | ... | ... |
-
Please register or login to post a comment