. . .

Version 2.2.1

Behaviour of <YourModule>.AOM.findByNames(...) changed

Old behaviour:

  • If an exception occurs, return null. Independent of the transience.

  • If the class of the objects you want to find is transient, the return value equals the return value of the doGetAll implementation of that class.

  • If the class of the objects you want to find is non-transient:

    • If no elements were found, return null.

    • If elements were found, return the filled array.

New behaviour:

  • If an exception occurs, return null. Independent of the transience.

  • If the class of the objects you want to find is transient, the return value equals the return value of the doGetAll implementation of that class.

  • If the class of the objects you want to find is non-transient:

    • If no elements were found, return an empty array.

    • If elements were found, return the filled array.