Skip to content

Commit

Permalink
add TODOs for Resource.combine
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Orban <lorban@bitronix.be>
  • Loading branch information
lorban committed Aug 11, 2022
1 parent 20bab8a commit 08f344e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public abstract class Resource
* @return A Resource of multiple resources.
* @see ResourceCollection
*/
// TODO this should be moved to ResourceFactory
public static ResourceCollection combine(List<Resource> resources)
{
if (resources == null || resources.isEmpty())
Expand All @@ -72,6 +73,7 @@ public static ResourceCollection combine(List<Resource> resources)
* @return A Resource of multiple resources.
* @see ResourceCollection
*/
// TODO this should be moved to ResourceFactory
public static ResourceCollection combine(Resource... resources)
{
if (resources == null || resources.length == 0)
Expand Down

0 comments on commit 08f344e

Please sign in to comment.