If have the following:
Class A
{
Method M(priority = 2)
}
Class B
{
Method M(priority = 1)
}
Then Class B is going to be executed before Class A. How can I execute Class A first?
The XML file that I am using is:
<classes>
<class name="com.Users.Admin_ManageUsers_AR"/>
<class name="com.Users.Admin_ManageUsers_AR"/>
</classes>